Categories
How to combine multiple include for one page?
I want to combine several include for one page, something like that. How to do it right?
urlpatterns = [ url(r'^$', include('about.urls', 'quote.urls')), ]
Answer the question
In order to leave comments, you need to log in
For example, like this:
urlpatterns = [ url(r'^', include('about.urls')), url(r'^', include('quote.urls')), ]
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question