{% extends 'blog/base.html' %} {% load staticfiles %} {% block post_block %}
{% if post %}

{{post.title}}


{{post.title}}

{{post.content | safe }}

Categories: {% for category in post_categories %} {% if forloop.last %} {{ category.text }} {% else %} {{ category.text }}, {% endif %} {% endfor %}

Tags: {% for tag in post_tags %} {% if forloop.last %} {{ tag.text }} {% else %} {{ tag.text }}, {% endif %} {% endfor %}

Share This Post
Leave a Comment:
{% if user.is_authenticated %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% if comments %} {% for comment in comments %}
50x50

{{comment.author.user}}

{{comment.content}}

{% if comment.replies.all %} {% for reply in comment.replies.all %}
50x50

{{reply.author.user}}

{{ reply.content}}

{% if forloop.last %} {% if user.is_authenticated %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %} {% endif %}
{% endfor %} {% else %} {% if user.is_authenticated %}
{% csrf_token %}
{% else %} {% csrf_token %}
{% endif %}
{% endif %}
{% endfor %} {% endif %}
{% else %}

Post Has been deleted OR 404!!!!

{% endif %}
{% endblock %}