User menu

* adds user notifications and management
This commit is contained in:
mipel
2021-07-08 17:23:06 +02:00
parent 41fff3a687
commit 1ced6fdadd
14 changed files with 377 additions and 29 deletions

View File

@@ -7,9 +7,10 @@ Created on: 08.07.21
"""
from django.urls import path
from user.views import index_view
from user.views import *
app_name="user"
app_name = "user"
urlpatterns = [
path("", index_view, name="index"),
path("notifications/", notifications_view, name="notifications"),
]