2👍
I think this is your problem:
urlpatterns = patterns('app.views', url(r'^$', 'multiple.'), )
^
See the dot? That breaks looking up the view function.
👤sk1p
Source:stackexchange.com
2👍
I think this is your problem:
urlpatterns = patterns('app.views', url(r'^$', 'multiple.'), )
^
See the dot? That breaks looking up the view function.