{% extends "admin/base_new.html" %} {% block title %}{% if is_add %}Add{% else %}Change{% endif %} {{ model_name }} - {{ site_title }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if errors and errors.__all__ %}
{{ errors.__all__ }}
{% endif %}
{% for section in fieldsets %}
{% if section.title %} {{ section.title }} {% endif %} {% if section.description %}

{{ section.description }}

{% endif %}
{% for field in section.fields %}
{% if field.widget_html %} {{ field.widget_html|safe }} {% elif field.type == "checkbox" %}
{% elif field.type == "textarea" %} {% elif field.type == "select" %} {% elif field.type == "multiselect" %} Hold Ctrl/Cmd to select multiple items {% else %} {% endif %} {% if errors and field.name in errors %}
{{ errors[field.name] }}
{% endif %}
{% endfor %}
{% endfor %}
Cancel
{% if not is_add and can_delete %} {% endif %}
{% if not is_add and can_delete %}

Danger Zone

Permanently delete this {{ model_name }}. This action cannot be undone.

{% endif %} {% if prepopulated %} {% endif %} {% endblock %}