On Wed, Mar 18, 2009 at 9:42 AM, jeffhg58 <jeffh...@comcast.net> wrote:

>
> 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
>
>
> >
>
This is a bug in the current development version of Django:
http://code.djangoproject.com/ticket/10061 .  It has a patch on it, which
you can try applying to your Django version if you like, it should work
fine.  This will be fixed before 1.1 has a full release.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

--~--~---------~--~----~------------~-------~--~----~
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