User menu
* starts user menu implementation
This commit is contained in:
15
user/urls.py
Normal file
15
user/urls.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Author: Michel Peltriaux
|
||||
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
||||
Contact: michel.peltriaux@sgdnord.rlp.de
|
||||
Created on: 08.07.21
|
||||
|
||||
"""
|
||||
from django.urls import path
|
||||
|
||||
from user.views import index_view
|
||||
|
||||
app_name="user"
|
||||
urlpatterns = [
|
||||
path("", index_view, name="index"),
|
||||
]
|
||||
Reference in New Issue
Block a user