From 81215d79330507b26291d3347279b9c718da9fac Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 17 Jul 2005 02:59:31 +0000 Subject: [PATCH] Improved tutorial02 to discuss login errors, linking to the FAQ git-svn-id: http://code.djangoproject.com/svn/django/trunk@134 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial02.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index deaf4246db..9879b10394 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -111,8 +111,11 @@ Drop into the Python interactive interpreter and type this:: Enter the admin site ==================== -Now, try logging in. If the login worked, you should see the Django admin index -page: +Now, try logging in. + +If it didn't work, read the `"I can't log in" questions`_ in the FAQ. + +If it worked, you should see the Django admin index page: .. image:: http://media.djangoproject.com/img/doc/tutorial/admin02t.png :alt: Django admin index page @@ -121,6 +124,8 @@ page: By default, you should see four types of editable content: groups, users, redirects and flat files. These are core features Django ships with by default. +.. _"I can't log in" questions: http://www.djangoproject.com/documentation/faq/#the-admin-site + Make the poll app modifiable in the admin =========================================