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

{{ article.title }}

Written by {{ article.author.username }}

{{ article.body }}

{{ article.date }}

{{ article.tags }}


{% csrf_token %} {{ comment_form.as_p }}
{% for comment in article.comments.all %}
{{ comment.created_date }}
{{ comment.author }}

{{ comment.text|linebreaks }}

{% empty %}

No comments here yet :(

{% endfor %} {% endblock %}