{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block body_class %}pages{% endblock %} {% block title %} {{ title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {{ title }} {% endblock %} {% block dashboard_content %}
{% csrf_token %} {% trans "Page" %}
{{ form.non_field_errors }} {% for field in form %} {% if field.is_hidden %} {{ field }} {% endif %} {% if 'attr' not in field.id_for_label %}
{% if field.is_hidden %} {{ field }} {% else %}
{{ field }} {% for error in field.errors %} {{ error }} {% endfor %} {% if field.help_text %} {{ field.help_text }} {% endif %}
{% endif %}
{% endif %} {% endfor %}
{% trans "or" %} {% trans "cancel" %}
{% if page %}

{% trans "View on site" %}

{% endif %} {% endblock dashboard_content %}