summaryrefslogtreecommitdiffstats
path: root/wekan_py/urls.py
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-05-24 11:04:53 +0300
committerLauri Ojansivu <x@xet7.org>2018-05-24 11:04:53 +0300
commit171d0c862999788cf97f01fe4c3057b2f281f621 (patch)
treebfb75f515ca09fe54a52677c1e1d5c6cdccb0bd4 /wekan_py/urls.py
parent31e4400c667074fbc8644f8c3d89698dfeb96215 (diff)
parenta69997d31e4d73a671cd3d30afc3b7f9e179ef2c (diff)
downloadwekan-171d0c862999788cf97f01fe4c3057b2f281f621.tar.gz
wekan-171d0c862999788cf97f01fe4c3057b2f281f621.tar.bz2
wekan-171d0c862999788cf97f01fe4c3057b2f281f621.zip
Merge branch 'devel'
Diffstat (limited to 'wekan_py/urls.py')
-rw-r--r--wekan_py/urls.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/wekan_py/urls.py b/wekan_py/urls.py
new file mode 100644
index 00000000..9737cd8f
--- /dev/null
+++ b/wekan_py/urls.py
@@ -0,0 +1,21 @@
+"""wekan_py URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/2.0/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+]