Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""capstone URL Configuration 

2 

3The `urlpatterns` list routes URLs to views. For more information please see: 

4 https://docs.djangoproject.com/en/3.1/topics/http/urls/ 

5Examples: 

6Function views 

7 1. Add an import: from my_app import views 

8 2. Add a URL to urlpatterns: path('', views.home, name='home') 

9Class-based views 

10 1. Add an import: from other_app.views import Home 

11 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 

12Including another URLconf 

13 1. Import the include() function: from django.urls import include, path 

14 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 

15""" 

16from django.contrib import admin 

17from django.urls import path, include 

18from django.contrib.staticfiles.urls import staticfiles_urlpatterns 

19from django.views.i18n import JavaScriptCatalog 

20 

21urlpatterns = [ 

22 path('admin/', admin.site.urls), 

23 path("", include("policon.urls")), 

24 path("policorp/", include("policorp.urls")), 

25 path('jsi18n/', JavaScriptCatalog.as_view(), name='javascript-catalog') 

26] 

27urlpatterns += staticfiles_urlpatterns()