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

Article

{{ article.title }}

{{ article.text }}

By: {{ article.author }}

Tags

Update
{% csrf_token %}

Comments

{% url 'comments_add' article_id=article.id as comments_action_url %} {% include 'partial/form.html' with form=comments_form request_method='post' action_url=comments_action_url %} {% for comment in comments %}
{{ comment.author }}
Update
{% csrf_token %}

{{ comment.text }}

{% empty %}
No comments yet.
{% endfor %} {% endblock %}