i try your advices but didnt work i dont know why because the admin pattern should handle this urls
On May 4, 3:01 pm, Ivan <[email protected]> wrote: > Try to replace your patern '^admin/' this '^admin/$', or swap > ( r'^admin/', include( admin.site.urls ) ) > and ( r'', include( 'role.company.urls' ) ) > > > > > > > > > my urlconf look like this > > > from django.conf.urls.defaults import patterns, include > > > # Uncomment the next two lines to enable the admin: > > from django.contrib import admin > > admin.autodiscover() > > > urlpatterns = patterns( '', > > ( r'^admin/', include( admin.site.urls ) ), > > ( r'', include( 'role.company.urls' ) ), > > ) > > > and in the role.company.urls i dont put anything about debug or url > > that can override the admin ones -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

