diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-15 06:07:43 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-15 06:07:43 +0000 |
| commit | 60e3d1352dc7330a39f92c81668f70efa29c2f94 (patch) | |
| tree | 6e7cbc41a40541d145afa528ce9f3c33985a9979 /django/contrib/admin | |
| parent | ceb558c277876c506e8ee45f98f5029667896c9c (diff) | |
Fixed #1090 -- Added {% block content_title %} hook to admin base.html template. Thanks, Joseph Kocherhans
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/admin')
| -rw-r--r-- | django/contrib/admin/templates/admin/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/admin/base.html b/django/contrib/admin/templates/admin/base.html index 3d35423ac3..ef657528a1 100644 --- a/django/contrib/admin/templates/admin/base.html +++ b/django/contrib/admin/templates/admin/base.html @@ -36,7 +36,7 @@ <!-- Content --> <div id="content" class="{% block coltype %}colM{% endblock %}"> {% block pretitle %}{% endblock %} - {% if title %}<h1>{{ title }}</h1>{% endif %} + {% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %} {% block content %}{{ content }}{% endblock %} {% block sidebar %}{% endblock %} <br class="clear" /> |
