c72ff615ba
* adds user/includes/contact_modal_button.html for calling contact data of a user * adds user contact modal to intervention detail view * adds translations
18 lines
440 B
Python
18 lines
440 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 *
|
|
|
|
app_name = "user"
|
|
urlpatterns = [
|
|
path("", index_view, name="index"),
|
|
path("notifications/", notifications_view, name="notifications"),
|
|
path("contact/<id>", contact_view, name="contact"),
|
|
|
|
] |