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"),
|
2022-01-27 11:37:38 +01:00
|
|
|
path("token/api", api_token_view, name="api-token"),
|
2021-08-02 14:10:57 +02:00
|
|
|
path("contact/<id>", contact_view, name="contact"),
|
2022-02-17 13:13:32 +01:00
|
|
|
path("team/", index_team_view, name="team-index"),
|
|
|
|
path("team/new", new_team_view, name="team-new"),
|
2022-02-18 15:28:15 +01:00
|
|
|
path("team/<id>", data_team_view, name="team-data"),
|
2022-02-17 13:13:32 +01:00
|
|
|
path("team/<id>/edit", edit_team_view, name="team-edit"),
|
|
|
|
path("team/<id>/remove", remove_team_view, name="team-remove"),
|
2021-08-02 14:10:57 +02:00
|
|
|
|
2021-07-08 11:07:33 +02:00
|
|
|
]
|