From dc00873da09e49afb3a3d31248e61175f4b4fea4 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 11 Sep 2010 03:25:39 +0000 Subject: [PATCH] [1.2.X] Fixed id attribute generation in the admin docs page. Patch from simeon. Fixed #3695. Thanks. Backport of r13728 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13747 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" %}