summaryrefslogtreecommitdiffstats
path: root/wekan_py/urls.py
diff options
context:
space:
mode:
authorSpeaKeasY <speakeasysky@gmail.com>2018-05-20 18:38:33 +0000
committerSpeaKeasY <speakeasysky@gmail.com>2018-05-20 18:38:33 +0000
commite5c6da5a3919158d8164ae1e0b4a8567da71249d (patch)
tree7615690fbafe620b01ac824bcd4ed835546ab6fe /wekan_py/urls.py
parent3075791a931998d36ec21a35d2d9057defd24453 (diff)
downloadwekan-e5c6da5a3919158d8164ae1e0b4a8567da71249d.tar.gz
wekan-e5c6da5a3919158d8164ae1e0b4a8567da71249d.tar.bz2
wekan-e5c6da5a3919158d8164ae1e0b4a8567da71249d.zip
Added initial DJango 2.0.5 project config with pyjade, python 3.6.5 venv.
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),
+]