From cd435ff796258ce58dfdcb09caa2ae6cd02903e9 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 1 Sep 2005 21:59:39 +0000 Subject: [PATCH] Fixed #417 -- Added clarification to docs/tutorial02.txt about settings.admin vs. settings.main. Thanks, benno@jeamland.net git-svn-id: http://code.djangoproject.com/svn/django/trunk@596 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial02.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt index 7cd26494a8..b0b345ae36 100644 --- a/docs/tutorial02.txt +++ b/docs/tutorial02.txt @@ -61,6 +61,12 @@ admin's login screen: .. image:: http://media.djangoproject.com/img/doc/tutorial/admin01.png :alt: Django admin login screen +.. admonition:: Note + + If you get an error telling you that the URL 'admin/' didn't match any of + your URLconf entries, you most likely used ``myproject.settings.main`` + instead of ``myproject.settings.admin``. + Enter the admin site ====================