{% extends 'main/base.html' %} {% block title %} Details For Article {{ article.id }} {% endblock %} {% block content %}
{{ article.title|escape }}
{{ article.timestamp }}
{{ article.text|escape|linebreaksbr }}
Comments
{% if article.comment_set.count %} {% for c in article.comment_set.all %} {% endfor %}
{{ c.author }}: {{ c.text|escape|linebreaksbr }}
{% else %} No comments {% endif %}
{% endblock %}