From 0171f007613d42cf26eb2742cfe73ea82fd4b43d Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Thu, 29 Nov 2007 16:32:29 +0000 Subject: [PATCH] Fixed #5706 -- Fixed a couple of XHTML incompatibilities. Based on a patch from tvrg. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6735 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- .../admin/templates/admin_doc/template_filter_index.html | 2 +- .../contrib/admin/templates/admin_doc/template_tag_index.html | 2 +- django/contrib/admin/templates/admin_doc/view_index.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/django/contrib/admin/templates/admin_doc/template_filter_index.html b/django/contrib/admin/templates/admin_doc/template_filter_index.html index f67f14eb35..902396d416 100644 --- a/django/contrib/admin/templates/admin_doc/template_filter_index.html +++ b/django/contrib/admin/templates/admin_doc/template_filter_index.html @@ -13,7 +13,7 @@ {% for library in filter_libraries %}

{% if library.grouper %}{{ library.grouper }}{% else %}Built-in filters{% endif %}

- {% if library.grouper %}

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


{% endif %} + {% 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.title }}

diff --git a/django/contrib/admin/templates/admin_doc/template_tag_index.html b/django/contrib/admin/templates/admin_doc/template_tag_index.html index 9bd66b70e7..ea49529393 100644 --- a/django/contrib/admin/templates/admin_doc/template_tag_index.html +++ b/django/contrib/admin/templates/admin_doc/template_tag_index.html @@ -13,7 +13,7 @@ {% for library in tag_libraries %}

{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}

- {% if library.grouper %}

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


{% endif %} + {% 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.title }}

diff --git a/django/contrib/admin/templates/admin_doc/view_index.html b/django/contrib/admin/templates/admin_doc/view_index.html index 47f99350a3..1ed5ba2ac1 100644 --- a/django/contrib/admin/templates/admin_doc/view_index.html +++ b/django/contrib/admin/templates/admin_doc/view_index.html @@ -29,10 +29,10 @@ {% for view in site_views.list|dictsort:"url" %} {% ifchanged %} -

{{ view.url|escape }}

+

{{ view.url|escape }}

View function: {{ view.module }}.{{ view.name }}

{{ view.title }}

-
+
{% endifchanged %} {% endfor %}