Answers for "registration of the path django urls in the core app or main app"

0

registration of the path django urls in the core app or main app

from django.contrib import admin
from django.urls import include, path

urlpatterns = [
    path('polls/', include('polls.urls')),
    path('admin/', admin.site.urls),
]
Posted by: Guest on April-17-2022

Python Answers by Framework

Browse Popular Code Answers by Language