diff options
author | clarkzjw <[email protected]> | 2023-02-21 14:22:41 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-21 14:22:41 -0800 |
commit | 0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e (patch) | |
tree | 78c8d1c09f381050f9c3b7f1a911fbbbe28a81d0 /checkin/urls.py | |
parent | 431e8abcc4bf858e4ca945384a2f60702f1b5a4c (diff) | |
download | swarm2fediverse-0ce8037dcb01745edc9930b09e72bf7ea4dfcf4e.tar.gz |
add django project template
Diffstat (limited to 'checkin/urls.py')
-rw-r--r-- | checkin/urls.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/checkin/urls.py b/checkin/urls.py new file mode 100644 index 0000000..a173748 --- /dev/null +++ b/checkin/urls.py | |||
@@ -0,0 +1,21 @@ | |||
1 | """checkin URL Configuration | ||
2 | |||
3 | The `urlpatterns` list routes URLs to views. For more information please see: | ||
4 | https://docs.djangoproject.com/en/4.1/topics/http/urls/ | ||
5 | Examples: | ||
6 | Function views | ||
7 | 1. Add an import: from my_app import views | ||
8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') | ||
9 | Class-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') | ||
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')) | ||
15 | """ | ||
16 | from django.contrib import admin | ||
17 | from django.urls import path | ||
18 | |||
19 | urlpatterns = [ | ||
20 | path('admin/', admin.site.urls), | ||
21 | ] | ||