]> git.p6c8.net - pcdenotes.git/blob - notes/urls.py
Added STATIC_ROOT
[pcdenotes.git] / notes / urls.py
1 from django.urls import path
2 from . import views
3
4 app_name = 'notes'
5
6 urlpatterns=[
7 path('', views.note_list, name="note_list"),
8 path('notes/<slug:note_slug>', views.note_detail, name="note_detail"),
9 ]

patrick-canterino.de