I have following structure of my folders in Django:
./project_root ./app ./fixtures/ ./static/ ./templates/ ./blog/ ./
Have you tried something like:
for app in INSTALLED_APPS: # You'll want to check that you can import the urls of that app here urlpatterns += patterns('', url(r'^%s/' % app, include('%s.urls' % app) ) )