{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content_title %}{% endblock %} {% block content %}

{{ title }}

{% if entry.group %}

{% trans "Group" %}: {{ entry.group }}

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

{{ field.help_text }}

{% endif %} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% else %}

{% trans "This command has no configurable parameters." %}

{% endif %}
{% endblock %}