{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %}
{% trans 'Home' %}
›
{% trans 'Documentation' %}
› {% trans 'Templates' %} › {{ name }}
{% endblock %} {% block title %}{% blocktrans %}Template: {{ name }}{% endblocktrans %}{% endblock %} {% block content %}
{% blocktrans %}Template: "{{ name }}"{% endblocktrans %}
{# Translators: Search is not a verb here, it qualifies path (a search path) #}
{% blocktrans %}Search path for template "{{ name }}":{% endblocktrans %}
{% for template in templates|dictsort:"order" %}
{{ template.file }}
{% if not template.exists %}
{% trans '(does not exist)' %}
{% endif %}
{% endfor %}
‹ {% trans 'Back to Documentation' %}
{% endblock %}