From c5772009c12f477f062fae4bde7d5f0a51627ed4 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 10 Sep 2010 22:37:17 +0000 Subject: [PATCH] Fixed id attribute generation in the admin docs page. Patch from simeon. Fixed #3695. Thanks. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13728 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- .../admindocs/templates/admin_doc/template_filter_index.html | 4 ++-- .../admindocs/templates/admin_doc/template_tag_index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/django/contrib/admindocs/templates/admin_doc/template_filter_index.html b/django/contrib/admindocs/templates/admin_doc/template_filter_index.html index 53383edc23..7470762775 100644 --- a/django/contrib/admindocs/templates/admin_doc/template_filter_index.html +++ b/django/contrib/admindocs/templates/admin_doc/template_filter_index.html @@ -15,7 +15,7 @@

{% firstof library.grouper "Built-in filters" %}

{% if library.grouper %}

To use these filters, put {% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %} in your template before using the filter.


{% endif %} {% for filter in library.list|dictsort:"name" %} -

{{ filter.name }}

+

{{ filter.name }}

{{ filter.title }}

{{ filter.body }}

{% if not forloop.last %}
{% endif %} @@ -36,7 +36,7 @@

{% firstof library.grouper "Built-in filters" %}

diff --git a/django/contrib/admindocs/templates/admin_doc/template_tag_index.html b/django/contrib/admindocs/templates/admin_doc/template_tag_index.html index a4ad66fd96..774130bd70 100644 --- a/django/contrib/admindocs/templates/admin_doc/template_tag_index.html +++ b/django/contrib/admindocs/templates/admin_doc/template_tag_index.html @@ -15,7 +15,7 @@

{% firstof library.grouper "Built-in tags" %}

{% if library.grouper %}

To use these tags, put {% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %} in your template before using the tag.


{% endif %} {% for tag in library.list|dictsort:"name" %} -

{{ tag.name }}

+

{{ tag.name }}

{{ tag.title }}

{{ tag.body }}

{% if not forloop.last %}
{% endif %} @@ -36,7 +36,7 @@

{% firstof library.grouper "Built-in tags" %}