{% extends "aircox/page.html" %} {% load static i18n humanize honeypot %} {% comment %} Base template used to display a page Context: - title: title - page: page {% endcomment %} {% block header_meta %}{{ block.super }} {% if page.category %} {{ page.category.title }} // {% endif %} {% endblock %} {% block main %} {{ block.super }} {% block comments %} {% if comments or comment_form %}

{% trans "Comments" %}

{% for comment in comments %}

{{ comment.nickname }}
{{ comment.content }}

{% endfor %} {% if comments and comment_form %}
{% endif %} {% if comment_form %}
{% trans "Post a comment" %}
{% csrf_token %} {% render_honeypot_field "website" %} {% for field in comment_form %}

{{ field }}

{% if field.errors %}

{{ field.errors }}

{% endif %} {% if field.help_text %}

{{ field.help_text|safe }}

{% endif %}
{% endfor %}
{% endif %}
{% endif %} {% endblock %} {% endblock %}