konova/user/urls.py
mipel 41fff3a687 User menu
* starts user menu implementation
2021-07-08 11:07:33 +02:00

15 lines
320 B
Python

"""
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"),
]