Django application urls not working
The '$' is only used for urls. If you look at the doc, it will tell you not use the '$' when using include().
Your base urls should be:
urlpatterns = patterns('',
(r'^', include('app.urls')),
(r'^admin/', include(admin.site.urls)),
)