Date: {{ blogpost.creation_date|date:"j F Y" }} |
Tags:
{% for t in post_tag_list %}
{{ t.name }},
{% endfor %}
|
Categories:
{% for c in post_category_list %}
{{ c.name }},
{% endfor %}
Comments
{% for comment in post_comment_list %}
{% include "blog/comment_body.html" %}
{% endfor %}
{% if not comments_closed %}
{% include 'blog/comment_form.html' %}
{% else %}
New comment entry is closed for this post
{% endif %}
{% endblock content %}
{% block sidebar %}
{% include "blog/widgets/categories.html" %}
{% include "blog/widgets/tags.html" %}
{% include "blog/widgets/date_archive.html" %}
{% endblock %}