{% extends "aircox/basepage_detail.html" %} {% load static i18n humanize honeypot %} {% comment %} Base template used to display a Page Context: - page: page {% endcomment %} {% block header_crumbs %} {{ 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 %}