Add account deletion functionality with confirmation dialog and routing

This commit is contained in:
Edgar P. Burkhart 2025-06-15 11:31:07 +02:00
parent cd0ca2f5ea
commit 8faff47696
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
6 changed files with 46 additions and 13 deletions

View file

@ -25,5 +25,6 @@ urlpatterns = [
name="password_reset_confirm",
),
path("accounts/settings/", views.AccountView.as_view(), name="account_settings"),
path("accounts/delete/", views.AccountDeleteView.as_view(), name="account_delete"),
path("legal/", TemplateView.as_view(template_name="privacy.html"), name="legal"),
]