{% extends "templatesadmin/base.html" %} {% load i18n %} {% block breadcumbs %} {% trans "Home" %}{% trans "File selection" %} › {{ short_path }} {% endblock %} {% block main %}

{{ template_path }}

{{ 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 %} {% block extrastyle %} textarea#id_content{ width: 99%; height: 400px; margin: 1em 0; font-family: monospace; } {% endblock %}