[Answered ]-'views' is not defined in Django 1.10

2👍

You need to use the include function when trying to include other urls

url(r'^courses/', include(course.urls)), 

Note: admin.site.urls is a special case and doesn’t require the use of include since it does magic

👤Sayse

Leave a comment