~ubuntu-branches/debian/squeeze/python-django/squeeze

« back to all changes in this revision

Viewing changes to django/contrib/admindocs/templates/admin_doc/template_detail.html

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb, Chris Lamb, David Spreen, Sandro Tosi
  • Date: 2008-11-19 21:31:00 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081119213100-gp0lqhxl1qxa6dgl
Tags: 1.0.2-1
[ Chris Lamb ]
* New upstream bugfix release. Closes: #505783
* Add myself to Uploaders with ACK from Brett.

[ David Spreen ]
* Remove python-pysqlite2 from Recommends because Python 2.5 includes
  sqlite library used by Django. Closes: 497886

[ Sandro Tosi ]
* debian/control
  - switch Vcs-Browser field to viewsvn

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% extends "admin/base_site.html" %}
2
2
{% load i18n %}
3
 
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Documentation</a> &rsaquo; Templates &rsaquo; {{ name|escape }}</div>{% endblock %}
 
3
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Documentation</a> &rsaquo; Templates &rsaquo; {{ name }}</div>{% endblock %}
4
4
 
5
 
{% block title %}Template: {{ name|escape }}{% endblock %}
 
5
{% block title %}Template: {{ name }}{% endblock %}
6
6
 
7
7
{% block content %}
8
 
<h1>Template: "{{ name|escape }}"</h1>
 
8
<h1>Template: "{{ name }}"</h1>
9
9
 
10
10
{% regroup templates|dictsort:"site_id" by site as templates_by_site %}
11
11
{% for group in templates_by_site %}
12
 
    <h2>Search path for template "{{ name|escape }}" on {{ group.grouper }}:</h2>
 
12
    <h2>Search path for template "{{ name }}" on {{ group.grouper }}:</h2>
13
13
    <ol>
14
14
    {% for template in group.list|dictsort:"order" %}
15
 
        <li><code>{{ template.file|escape }}</code>{% if not template.exists %} <em>(does not exist)</em>{% endif %}</li>
 
15
        <li><code>{{ template.file }}</code>{% if not template.exists %} <em>(does not exist)</em>{% endif %}</li>
16
16
    {% endfor %}
17
17
    </ol>
18
18
{% endfor %}