{{ post.title }}

By {{ post.author.username }} on {{ post.created_at|date:"F d, Y" }}

{{ post.content|linebreaks }}

Comments

{% for comment in post.comments.all %} {% if comment.approved %}

{{ comment.author_name }} said:

{{ comment.content }}

{{ comment.created_at|date:"F d, Y" }}

{% endif %} {% empty %}

No comments yet.

{% endfor %} Add Comment