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