summaryrefslogtreecommitdiff
path: root/django/contrib/admin/templates/admin_doc/template_detail.html
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-04-15 16:46:54 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-04-15 16:46:54 +0000
commit6442fd27bcf116d62ba5108436a28a3ed4df95e5 (patch)
treef009cbf6b31afe163e01d3e75f614427ea7f6100 /django/contrib/admin/templates/admin_doc/template_detail.html
parent39d42d48618efbb5e5176a8b65b635a84bed45a5 (diff)
magic-removal: Fixed #500 -- Removed TEMPLATE_FILE_EXTENSION setting so that template loading requires you to give the full filename, including extension. This applies everywhere, even in the 'extends' and 'include' template tags.
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2700 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/admin/templates/admin_doc/template_detail.html')
-rw-r--r--django/contrib/admin/templates/admin_doc/template_detail.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/admin_doc/template_detail.html b/django/contrib/admin/templates/admin_doc/template_detail.html
index d2a2831098..df67f1856b 100644
--- a/django/contrib/admin/templates/admin_doc/template_detail.html
+++ b/django/contrib/admin/templates/admin_doc/template_detail.html
@@ -1,4 +1,4 @@
-{% extends "admin/base_site" %}
+{% extends "admin/base_site.html" %}
{% load i18n %}
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> &rsaquo; <a href="../../">Documentation</a> &rsaquo; Templates &rsaquo; {{ name }}</div>{% endblock %}
{% block userlinks %}<a href="../../../password_change/">{% trans 'Change password' %}</a> / <a href="../../../logout/">{% trans 'Log out' %}</a>{% endblock %}