{% extends "base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load custom_tags %} {% block title %}{% trans 'Edit' %} - {{ title }}{% endblock %} {% block extra_head %} {{ form.media }} {% endblock %} {% block content %}

{% trans 'Edit' %} {{ title }}

{% if form.Meta.model|get_class == 'Storage' %} {% include 'include/storage_backend_warning.html' %} {% endif %}
{% csrf_token %} {{ form|crispy }} {% trans 'Delete' %} {% if view_url %} {% trans 'View' %} {% endif %} {% if delete_external_url %} {% trans 'Delete original file' %} {% endif %}
{% endblock %}