{% load markup %} {% extends "base.html" %} {% block title %} - {{ post.title }} {% endblock %} {% block content %}

{{ post.title }}

{{ post.body|textile }}

{{ post.date }}

tags: {{ post.get_tags|safe }}

{% if is_user_auth %}

(edit this post)

{% endif %}
{% if has_comments %}

{{ comments_count }} comments so far

{% for comment in comments %}
{{ comment.get_header|safe }}
{{ comment.body|textile }}
{% endfor %}
{% endif %}
{% include "comment_form.html" %}
{% endblock %}