{% extends "admin/base_site.html" %} {% load i18n config_tags %}{% load url from future %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block userlinks %}{% trans 'Documentation' %} / {% trans 'Change password' %} / {% trans 'Log out' %}{% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block messages %} {% if messages %} {% endif %} {% endblock messages %} {% block content %}
{% if form.errors %}

{% blocktrans count form.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %} {% if form.fields %}
{% csrf_token %}
{% for field in form %} {% if field.errors %} {% endif %} {% endfor %}
{{ field.errors }}
{{ field.label_tag }} {% if field.help_text %}

{{ field.help_text|break_at:40 }}

{% endif %} {% if field.field.default_text %}

{{ field.field.default_text|break_at:40}}

{% endif %}
{{ field }}
{% else %}

{% trans "You don't have permission to edit values." %}

{% endif %}
{% endblock %}