Hello,
I'm new to the Django framework. I'm trying to figure out exactly where the url patterns are located. I see in mayan/settings/base.py that ROOT_URLCONF = 'mayan.urls'. In the mayan/url.py file I see that there are:
urlpatterns = patterns(
'',
url(r'^admin/', include(admin.site.urls)),
url(r'^docs/', include('rest_framework_swagger.urls')),
)
My question is, where are the patterns located for the rest of the URLs in the applications? For example, how are urls dispatched for /document? It appears to be working without having a urlpattern defined.
Rachael