#21385: Tutorial part 2 missing steps to enable admin page (uncommenting 
urls.py)
-------------------------------+--------------------
     Reporter:  anonymous      |      Owner:  nobody
         Type:  Uncategorized  |     Status:  new
    Component:  Documentation  |    Version:  1.4
     Severity:  Normal         |   Keywords:
 Triage Stage:  Unreviewed     |  Has patch:  0
Easy pickings:  0              |      UI/UX:  0
-------------------------------+--------------------
 https://docs.djangoproject.com/en/dev/intro/tutorial02/

 In order to access the admin page following along in the tutorial, you
 must also uncomment several lines in the urls.py which is not mentioned in
 part 1 or part 2 of the tutorial


 {{{
 # Uncomment the next two lines to enable the admin:
 from django.contrib import admin
 admin.autodiscover()

 urlpatterns = patterns('',
 ...
     # Uncomment the next line to enable the admin:
     url(r'^admin/', include(admin.site.urls)),
 )
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/21385>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.d0a996b9b86c83c413280067ff8f7f4d%40djangoproject.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to