Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python django include another app url

from django.urls import include

urlpatterns = [
    path('articles/', include('articles.urls')), # Include your app urls file
]
 
PREVIOUS NEXT
Tagged: #python #django #include #app #url
ADD COMMENT
Topic
Name
4+5 =