{% extends 'base_layout.html' %} {% block content %}

{{ article.title }}

{{ article.body }}

{{ article.date }}




{% csrf_token %} {{ comment_form.as_p }}
{{ comments.count }} Comment{{ comments|pluralize }} {% for comment in comments %}

{{ comments.content }}

{% endfor %}
{% endblock %}