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
Source:stackexchange.com
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