summaryrefslogtreecommitdiff
path: root/app/notes/urls.py
diff options
context:
space:
mode:
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"