{% extends "base.html" %} {% block extrahead %} {% endblock %} {% block title %} {{ article.title }} {% endblock %} {% block content %}
{% autoescape off %}

{{ article.title }}

{{ article.date|date:"d.m.Y" }}    {{ article.user }}
{{ article.text }}
List of articles…                                       Back…

Comments


{% for c in comments %}
{% if c.user %} {{ c.user }} {% else %} Anonymous {% endif %}
{{ c.date|date:"d.m.Y" }}
{{ c.comment }}
{% endfor %}

Write a comment:

{% csrf_token %} {{ form.as_p }}
{% endautoescape %} {% if form.errors %} {% endif %} {% endblock %}