summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2025-04-07 16:55:43 -0500
committerluxagraf <sng@luxagraf.net>2025-04-07 16:55:43 -0500
commit989bcd064c4bd994636cd33efd51f38ce8de3619 (patch)
treeaa9de11dd16038a68ef555db8e725d3cff3458cb /app
parent3fd2778db724a29d9a88ed13b57b320abe67b848 (diff)
notes: fixed bug in delete template
Diffstat (limited to 'app')
-rw-r--r--app/notes/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/notes/views.py b/app/notes/views.py
index 944186b..984af9a 100644
--- a/app/notes/views.py
+++ b/app/notes/views.py
@@ -65,8 +65,8 @@ class LuxNoteListView(ListView):
class LuxNoteDeleteView(DeleteView):
# specify the model you want to use
model = LuxNote
- success_url = "/notes/notes"
- template_name = "notes/confirm_delete.html"
+ success_url = "/notes"
+ template_name = "confirm_delete.html"
class LuxNoteDetailView(DetailView):