summaryrefslogtreecommitdiff
path: root/app/notes/urls.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2025-04-07 16:51:56 -0500
committerluxagraf <sng@luxagraf.net>2025-04-07 16:51:56 -0500
commit3fd2778db724a29d9a88ed13b57b320abe67b848 (patch)
tree3ef31ebccb506ddf1a84d2f719eff12633bcdbf4 /app/notes/urls.py
parent17a5f9bd32a1552c3402a9f1168a4926b6398cef (diff)
notes: added detail page
Diffstat (limited to 'app/notes/urls.py')
-rw-r--r--app/notes/urls.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/notes/urls.py b/app/notes/urls.py
index eb83804..cdab47c 100644
--- a/app/notes/urls.py
+++ b/app/notes/urls.py
@@ -17,6 +17,11 @@ urlpatterns = [
name="note-create"
),
path(
+ r'<pk>',
+ views.LuxNoteDetailView.as_view(),
+ name="note-detail"
+ ),
+ path(
r'<str:note_type>',
views.LuxNoteListView.as_view(),
name="note-list-status"