{% extends "base.html" %} {% block title %} Blog Detail {% endblock title %} {% block page_content %}

Blog Detail

{% for q in posts %} {% for r in q %} {% for s in r %} {% if 'title' in s %} ______________________________________________________________________________

{{ s.title }}

{{ s.created_on.date }}

Categories:

{% elif 'category_name' in s %}

{{s.category_name}}

  {% else %}
Post: {{s.savebody | linebreaks }}
{% endif %} {% endfor %} {% endfor %} {% endfor %}

Leave a New Comment:

{{ comments.post_id }} {% csrf_token %}
{{ form.author }}
{{ form.body }}

{{ message.message }}

{% if messages %} {% for message in messages %}

{% endfor %} {% endif %}

Comments:

{% for comment in comments %}

On {{comment.created_on.date }}  {{ comment.author }} wrote:

{{ comment.body }}


{% endfor %} {% endblock %}