diff options
author | luxagraf <sng@luxagraf.net> | 2025-04-07 20:07:08 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2025-04-07 20:07:08 -0500 |
commit | e0bd735f74c327f1c6f0abccc431b35a270fb8eb (patch) | |
tree | f28b7d592fafae9d7e253e0cbca5d257d9bd6879 /app/notes/views.py | |
parent | c8365aabc031517c0b3dc88af98ffd1a9942775f (diff) |
Diffstat (limited to 'app/notes/views.py')
-rw-r--r-- | app/notes/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/views.py b/app/notes/views.py index 724e674..53811d0 100644 --- a/app/notes/views.py +++ b/app/notes/views.py @@ -62,7 +62,7 @@ class LuxNoteListView(ListView): class LuxNoteDeleteView(DeleteView): # specify the model you want to use model = LuxNote - success_url = "/notes" + success_url = "/notes/" template_name = "confirm_delete.html" |