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

« back to all changes in this revision

Viewing changes to django/contrib/admindocs/templates/admin_doc/template_tag_index.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:
12
12
{% regroup tags|dictsort:"library" by library as tag_libraries %}
13
13
{% for library in tag_libraries %}
14
14
<div class="module">
15
 
    <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}</h2>
 
15
    <h2>{% firstof library.grouper "Built-in tags" %}</h2>
16
16
    {% if library.grouper %}<p class="small quiet">To use these tags, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the tag.</p><hr />{% endif %}
17
17
    {% for tag in library.list|dictsort:"name" %}
18
18
    <h3 id="{{ tag.name }}">{{ tag.name }}</h3>
33
33
{% regroup tags|dictsort:"library" by library as tag_libraries %}
34
34
{% for library in tag_libraries %}
35
35
<div class="module">
36
 
    <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}</h2>
 
36
    <h2>{% firstof library.grouper "Built-in tags" %}</h2>
37
37
    <ul>
38
38
    {% for tag in library.list|dictsort:"name" %}
39
39
        <li><a href="#{{ tag.name }}">{{ tag.name }}</a></li>