> before: ('^admin/(.*)', admin.site.root),
>
> after: (r'^admin/', include(admin.site.urls)),

Well, I had to change it before and about two weeks ago I changed it
too (this is how my urls.py looks like):

    (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    # (r'^admin/(.*)', admin.site.root),
    (r'^admin/', include(admin.site.urls)),

It solved some other problems (admin didn't work at all), but I still
have the problems with links in admin site.

>
> it work good now!!!
>
> bye
>
> 2010/6/23 Filip Gruszczyński <grusz...@gmail.com>
>>
>> After migrating to 1.2 I encountered a problem in admin panel. My
>> change password ang logout links look like this:
>>
>> https://example.com/admin/Nonelogout/
>> https://example.com/admin/Nonepassword_change/
>>
>> I have taken a look into django source and it seems, that root_path is
>> None (at least this variable is rendered in those urls). What I might
>> have forgotten to set and how can I change it to an empty string?
>>
>> --
>> Filip Gruszczyński
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-us...@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.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@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.
>



-- 
Filip Gruszczyński

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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