At the beginning of the urls.py file

from django.contrib import admin

admin.autodiscover()

In my urls.py I changed accessing my admin.site

from

r'^admin/(.*)', admin.site.root),

to

(r'^admin/', include(admin.site.urls)),

But when I access my admin I get errors when trying to logout the link
that is displayed is

http://127.0.0.1:8000/admin/admin/logout/

instead of

http://127.0.0.1:8000/admin/logout/

when using the admin.site.root

Thanks,
Jeff


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to