{% extends "admin/base_site.html" %} {% load i18n config_tags %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block branding %}

{{ site_header|default:_('Django administration') }}

{% if user.is_anonymous %} {% include "admin/color_theme_toggle.html" %} {% endif %} {% endblock %} {% block userlinks %}{% trans 'Documentation' %} / {% trans 'Change password' %} / {% trans 'Log out' %}{% endblock %} {% block breadcrumbs %} {% if not is_popup %} {% if has_multiple_groups %} {% endif %} {% endif %} {% endblock %} {% block messages %} {% if messages %} {% endif %} {% endblock messages %} {% block content %}
{% if has_multiple_groups %} {% include "livesettings/groups_navbar.html" %} {% endif %}
{% if has_multiple_groups %}

{{ title }}

{% endif %} {% 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 %}
{% if has_multiple_sites %} {% admin_site_views 'satchmo_site_settings' %} {% endif %}
{% endblock %}