{% extends "./dashboard/base.html" %} {% load static aircox aircox_admin i18n %} {% block init-scripts %} aircox.labels = {% inline_labels %} {{ block.super }} {% endblock %} {% block header-cover %}{% endblock %} {% block title %} {% if not object %} {% with view.model|verbose_name as model %} {% blocktranslate %}Create a {{model}}{% endblocktranslate %} {% endwith %} {% else %} {{ block.super }} {% endif %} {% endblock %} {% block title-container %} {{ block.super }} {% block page-actions %} {% include "aircox/widgets/page_actions.html" %} {% endblock %} {% endblock %} {% block content-container %}
{% block page-form %} {% csrf_token %}
{% for field in form %} {% if field.name not in "cover,content" %}
{% if field.name == "pub_date" %} {% else %} {% include "aircox/forms/form_field.html" with field=field.field name=field.name value=field.initial %} {% endif %}

{{ field.help_text }}

{% endif %} {% if field.errors %}

{{ field.errors }}

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

{{ field.help_text|safe }}

{% endif %} {% endfor %}
{% with form.cover as field %} {% block page-form-cover %} {% spaceless %}
{% endspaceless %} {% endblock %} {% endwith %}
{% with form.content as field %} {% block page-form-content %}
{% comment %} {% endcomment %}

{{ field.help_text }}

{% if field.errors %}

{{ field.errors }}

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

{{ field.help_text|safe }}

{% endif %}
{% endblock %} {% endwith %} {% endblock %}
{% block page-form-actions %}{% endblock %}
{% endblock %}