Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

child urls python

from django.urls import include, path

urlpatterns = [
    # ... snip ...
    path('community/', include('aggregator.urls')),
    path('contact/', include('contact.urls')),
    # ... snip ...
]
Source by docs.djangoproject.com #
 
PREVIOUS NEXT
Tagged: #child #urls #python
ADD COMMENT
Topic
Name
7+7 =