ImproperlyConfiguredError about app_name when using namespace in include()

Check the docs for include here.

What you’ve done is not an acceptable way of passing parameters to include. You could do:

url(r'^reviews/', include(('reviews.urls', 'reviews'), namespace="reviews")),

Leave a Comment