2021-07-08 11:07:33 +02:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
2021-07-08 17:23:06 +02:00
|
|
|
from user.views import *
|
2021-07-08 11:07:33 +02:00
|
|
|
|
2021-07-08 17:23:06 +02:00
|
|
|
app_name = "user"
|
2021-07-08 11:07:33 +02:00
|
|
|
urlpatterns = [
|
|
|
|
path("", index_view, name="index"),
|
2021-07-08 17:23:06 +02:00
|
|
|
path("notifications/", notifications_view, name="notifications"),
|
2021-08-02 14:10:57 +02:00
|
|
|
path("contact/<id>", contact_view, name="contact"),
|
|
|
|
|
2021-07-08 11:07:33 +02:00
|
|
|
]
|