summaryrefslogtreecommitdiff
path: root/app/notes/views.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2025-04-07 20:07:08 -0500
committerluxagraf <sng@luxagraf.net>2025-04-07 20:07:08 -0500
commite0bd735f74c327f1c6f0abccc431b35a270fb8eb (patch)
treef28b7d592fafae9d7e253e0cbca5d257d9bd6879 /app/notes/views.py
parentc8365aabc031517c0b3dc88af98ffd1a9942775f (diff)
notes: added tags to list viewHEADmaster
Diffstat (limited to 'app/notes/views.py')
-rw-r--r--app/notes/views.py2
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"