feat: Add dedicated notification page

This commit is contained in:
2025-07-12 14:01:40 +02:00
parent bbfd4c3800
commit e2bef3efe2
4 changed files with 56 additions and 11 deletions

View File

@@ -75,6 +75,7 @@ urlpatterns = [
# ex: user/1
path("user/<int:user_id>/", views.user_by_id, name="user-detail"),
path("user/me/", views.my_profile, name="user-me"),
path("user/notifications/", views.my_notifications, name="user-notifications"),
path('user/me/export/', views.export_own_profile, name='user-me-export'),
path('accounts/register/',