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
This commit is contained in:
Adrian Holovaty 2005-07-26 22:52:18 +00:00
parent fe91881e35
commit 6a12d65b97
1 changed files with 3 additions and 1 deletions

View File

@ -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 %}