From 062e3f5c9375f72f137ae21b3e1c7953785347b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sun, 9 Aug 2020 19:33:52 +0800 Subject: [PATCH] Added the URL for the user management and apply them to the base template. --- mia_core/urls.py | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 mia_core/urls.py diff --git a/mia_core/urls.py b/mia_core/urls.py new file mode 100644 index 0000000..51c7d77 --- /dev/null +++ b/mia_core/urls.py @@ -0,0 +1,50 @@ +# The Mia core application of the Mia project. +# by imacat , 2020/8/9 + +# Copyright (c) 2020 imacat. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""The route settings of the Mia core application. + +""" +from django.urls import path + +from . import views + +app_name = "mia_core" +urlpatterns = [ + # TODO: To be done. + path("users", views.todo, name="users"), + # TODO: To be done. + path("users/create", views.todo, name="users.create"), + # TODO: To be done. + path("users/store", views.todo, name="users.store"), + # TODO: To be done. + path("users/", views.todo, name="users.detail"), + # TODO: To be done. + path("users//edit", views.todo, name="users.edit"), + # TODO: To be done. + path("users//update", views.todo, name="users.update"), + # TODO: To be done. + path("users//delete", views.todo, name="users.delete"), + # TODO: To be done. + path("api/users//exists", views.todo, + name="api.users.exists"), + # TODO: To be done. + path("my-account", views.todo, name="my-account"), + # TODO: To be done. + path("my-account/edit", views.todo, name="my-account.edit"), + # TODO: To be done. + path("my-account/update", views.todo, name="my-account.update"), +]