summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-26 22:52:18 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-26 22:52:18 +0000
commit6a12d65b97f7fea91783aa0157759c5ca41dbde6 (patch)
tree7d57c7f56a045520ea665572e066627d09966f61
parentfe91881e35db30dc61185c38cc0ab5c6a642e82f (diff)
Changed admin logged_out template NOT to hard-code /admin/ as the 'Home'. Refs #158
git-svn-id: http://code.djangoproject.com/svn/django/trunk@326 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/admin_templates/registration/logged_out.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/django/conf/admin_templates/registration/logged_out.html b/django/conf/admin_templates/registration/logged_out.html
index 30b80a78e2..92cf77e35b 100644
--- a/django/conf/admin_templates/registration/logged_out.html
+++ b/django/conf/admin_templates/registration/logged_out.html
@@ -1,9 +1,11 @@
{% extends "base_site" %}
+{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a></div>{% endblock %}
+
{% block content %}
<p>Thanks for spending some quality time with the Web site today.</p>
-<p><a href="/admin/">Log in again</a></p>
+<p><a href="../">Log in again</a></p>
{% endblock %}