{% extends "templatesadmin/base.html" %} {% load i18n admin_modify adminmedia %} {% load templatesadmin_tags %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %} {% trans "Edit Template:" %} {{ template_path|shortenfilepath }} {% endblock %} {% block content_title %}

{% trans "Edit Template:" %} {{ template_path|shortenfilepath }}

{% endblock %} {% block content %}
{{ form.errors }} {{ form.content }}
{% if template_writeable %} {% for field in form %} {% ifnotequal field.label "Content" %}

{{ field.label }} {{ field }}

{% if forloop.last %} {% endif %}
{% endifnotequal %} {% endfor %} {% else %} {% trans "This template is not writeable." %}
{% endif %}
{% endblock %}