From f07e5d4f5df5ca9ca3366d7ecc4b01c490c13198 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 19 Oct 2005 01:09:05 +0000 Subject: Fixed #627 -- BACKWARDS-INCOMPATIBLE CHANGE. Admin is now an app, not a middleware. See BackwardsIncompatibleChanges for a full list of changes and information on how to update your code. git-svn-id: http://code.djangoproject.com/svn/django/trunk@948 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- .../admin/templates/admin_doc/template_detail.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 django/contrib/admin/templates/admin_doc/template_detail.html (limited to 'django/contrib/admin/templates/admin_doc/template_detail.html') diff --git a/django/contrib/admin/templates/admin_doc/template_detail.html b/django/contrib/admin/templates/admin_doc/template_detail.html new file mode 100644 index 0000000000..448ff212ba --- /dev/null +++ b/django/contrib/admin/templates/admin_doc/template_detail.html @@ -0,0 +1,21 @@ +{% extends "admin/base_site" %} + +{% block breadcrumbs %}{% endblock %} + +{% block title %}Template: {{ name }}{% endblock %} + +{% block content %} +

Template: "{{ name }}"

+ +{% regroup templates|dictsort:"site_id" by site as templates_by_site %} +{% for group in templates_by_site %} +

Search path for template "{{ name }}" on {{ group.grouper }}:

+
    + {% for template in group.list|dictsort:"order" %} +
  1. {{ template.file }}{% if not template.exists %} (does not exist){% endif %}
  2. + {% endfor %} +
+{% endfor %} + +

‹ Back to Documentation

+{% endblock %} -- cgit v1.3