{% extends "backoffice/sidebar.html" %} {% load i18n %} {% load static %} {% block content %}
{% block title %}{% endblock title %}
{% 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 %}
{% endif %} {% endfor %}
{% block control %} {% endblock control %}
{% endblock content %} {% block footer %} {{ block.super }} {{ form.media }} {% endblock %}