2006-05-02 09:31:56 +08:00
|
|
|
{% extends "admin/base_site.html" %}
|
2005-12-01 14:52:16 +08:00
|
|
|
{% load i18n %}
|
2008-09-08 13:19:28 +08:00
|
|
|
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> › <a href="../../">Documentation</a> › Templates › {{ name }}</div>{% endblock %}
|
2005-08-03 04:29:27 +08:00
|
|
|
|
2008-09-08 13:19:28 +08:00
|
|
|
{% block title %}Template: {{ name }}{% endblock %}
|
2005-08-03 04:29:27 +08:00
|
|
|
|
|
|
|
{% block content %}
|
2008-09-08 13:19:28 +08:00
|
|
|
<h1>Template: "{{ name }}"</h1>
|
2005-08-03 04:29:27 +08:00
|
|
|
|
|
|
|
{% regroup templates|dictsort:"site_id" by site as templates_by_site %}
|
|
|
|
{% for group in templates_by_site %}
|
2008-09-08 13:19:28 +08:00
|
|
|
<h2>Search path for template "{{ name }}" on {{ group.grouper }}:</h2>
|
2005-08-03 04:29:27 +08:00
|
|
|
<ol>
|
|
|
|
{% for template in group.list|dictsort:"order" %}
|
2008-09-08 13:19:28 +08:00
|
|
|
<li><code>{{ template.file }}</code>{% if not template.exists %} <em>(does not exist)</em>{% endif %}</li>
|
2005-08-03 04:29:27 +08:00
|
|
|
{% endfor %}
|
|
|
|
</ol>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<p class="small"><a href="../../">‹ Back to Documentation</a></p>
|
|
|
|
{% endblock %}
|