~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (1.1.12 upstream) (29.1.1 maverick-security)
  • Revision ID: james.westby@ubuntu.com-20101012113435-yy57c8tx6g9anf3e
Tags: 1.2.3-1ubuntu0.1
* SECURITY UPDATE: XSS in CSRF protections. New upstream release
  - CVE-2010-3082
* debian/patches/01_disable_url_verify_regression_tests.diff:
  - updated to disable another test that fails without internet connection
  - patch based on work by Kai Kasurinen and Krzysztof Klimonda
* debian/control: don't Build-Depends on locales-all, which doesn't exist
  in maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
    <h2>{% firstof library.grouper "Built-in filters" %}</h2>
16
16
    {% if library.grouper %}<p class="small quiet">To use these filters, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the filter.</p><hr />{% endif %}
17
17
    {% for filter in library.list|dictsort:"name" %}
18
 
    <h3 id="{{ filter.name }}">{{ filter.name }}</h3>
 
18
    <h3 id="{{ library.grouper|default_if_none:"built_in" }}-{{ filter.name }}">{{ filter.name }}</h3>
19
19
    <p>{{ filter.title }}</p>
20
20
    <p>{{ filter.body }}</p>
21
21
    {% if not forloop.last %}<hr />{% endif %}
36
36
    <h2>{% firstof library.grouper "Built-in filters" %}</h2>
37
37
    <ul>
38
38
    {% for filter in library.list|dictsort:"name" %}
39
 
        <li><a href="#{{ filter.name }}">{{ filter.name }}</a></li>
 
39
        <li><a href="#{{ library.grouper|default_if_none:"built_in" }}-{{ filter.name }}">{{ filter.name }}</a></li>
40
40
    {% endfor %}
41
41
    </ul>
42
42
</div>