{% extends "admin/base.html" %} {% block title %}{% if is_new %}New {{ admin.display_name }}{% else %}Edit {{ admin.display_name }}{% endif %}{% endblock %} {% block breadcrumbs %}
{{ app_label }} {{ admin.display_name_plural }} {% if is_new %}New{% else %}#{{ pk }}{% endif %}
{% endblock %} {% block page_actions %} Back to list {% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Loading...

You have unsaved changes

{% if is_new %}Create {{ admin.display_name }}{% else %}Edit Details{% endif %}

Fields marked with * are required. Optional fields can be left empty.

No editable fields for this model.

Actions

{% if (is_new and user_perms.add) or (not is_new and user_perms.change) %} {% endif %} Cancel {% if not is_new and user_perms.delete and 'delete' not in admin.exclude_actions %}
{% endif %}

Metadata

Delete {{ admin.display_name }}?

This action cannot be undone.

{% block extra_js %} {% endblock %} {% endblock %}