{% extends 'blog/base.html' %} {% load crispy_forms_tags %} {% load thumbnail %} {% block title %}{{ object.title }}{% endblock title %} {% block pagetitle %}{{ object.title }}{% endblock pagetitle %} {% block meta_description %}{{ object.description }}{% endblock meta_description %} {% block blog_content %}
Comments
{% if object.enable_comments %}{% if login_requirement_met %} Post a Comment {% else %} You must be logged in to post a comment. {% endif %}
{% else %}Comments are now closed for this article.
{% endif %} {% with object.comment_set.get_approved as comments %} {% include 'blog/comments_list.html' %} {% endwith %}