]>
git.p6c8.net - pcdenotes.git/blob - pcdenotes/urls.py
4832ebe6a5bf534acf03e425a9d9465309a9aa7e
1 """pcdenotes URL Configuration
3 The `urlpatterns` list routes URLs to views. For more information please see:
4 https://docs.djangoproject.com/en/3.2/topics/http/urls/
7 1. Add an import: from my_app import views
8 2. Add a URL to urlpatterns: path('', views.home, name='home')
10 1. Add an import: from other_app.views import Home
11 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
12 Including 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'))
16 from django
.contrib
import admin
17 from django
.urls
import path
, include
20 path('admin/', admin
.site
.urls
),
21 path('', include('notes.urls')),
patrick-canterino.de