{% extends "admin/change_form.html" %}
{% load static %}
{% block after_field_sets %}
{% if original.is_image %}
{% include 'admin/media/includes/image_editor.html' %}
{% endif %}
{% endblock %}
{% block extrahead %}
{{ block.super }}
{% if original.is_image %}
{% endif %}
{% if is_popup %}
{% endif %}
{% if not original %}
{# Prepopulate the title with the name of the file, for new files. #}
{% endif %}
{% endblock %}