On 19-08-11 10:27, KC LEE wrote:
urlpatterns = patterns('',(r'^$', 'accounts.views.front_page'), url(r'social/', include('social_auth.urls')), (r'^admin/', include(admin.site.urls)), (r'^regions/', include('region.urls')), (r'^messages/', include('pimfy_messages.urls')), (r'^accounts/', include('accounts.urls')), (r'^issue/', include('issue.urls')), (r'^notification/', include('notification.urls')),
Looks alright. Only noticeable thing: that 'social/' one is the only one called with url(). Might be worth a try to remove that url() call around it to let it match the rest. Shouldn't matter, but... ;-)
You said that admin/* and admin/users/* and admin/groups/* *did* work? Which ones don't? If it is for instance /admin/issues/*, look at that issues app and see if there's an 'if settings.DEBUG' somewhere in there.
Reinout -- Reinout van Rees http://reinout.vanrees.org/ [email protected] http://www.nelen-schuurmans.nl/ "If you're not sure what to do, make something. -- Paul Graham" -- 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.

