{% extends 'template.html' %} {% load staticfiles %} {% block subtitile %}{{art.title}}{% endblock %} {% block content %}

{{ art.title }}

{% if art.image %}
{% endif %} {{ art.content }}

Comments

{% for comment in comments %}

{{ comment.user.username }}: {{ comment.content }}

{% empty %}

No comments yet!

{% endfor %} {% if addCommentForm %}
{% csrf_token %}
{% endif %}
{% endblock %}