{% extends 'blog/base.html' %} {% load staticfiles %} {% block head %} {% endblock head %} {% block body %}


posted by {{ posts.author }}
{{ posts.timestamp|date:"g:i A, d M, y" }}
{% if request.user == posts.author %} {% endif %}


{{ posts.title }}

{{ posts.content }}



Add comment

{% for comment in allcomments %}
{{ comment.author }}:

{{ comment.content }}

{{ posts.timestamp|date:"d M, y g:i A" }}
{% endfor %}
{% endblock %}