{% extends "backoffice/layouts/default.html" %} {% load i18n %} {% load static %} {% block content %}
{% block title %}{% endblock title %}
{% block control %} {% endblock control %}

{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% for error in field.errors %}

{{ error }}

{% endfor %}
{% if not forloop.last %}
{% endif %} {% endif %} {% endfor %}
{% endblock content %} {% block footer %} {{ block.super }} {{ form.media }} {% endblock %}