Add documentation and source
Added documentation, source and extra files.
This commit is contained in:
9
source/orm/library/urls.py
Normal file
9
source/orm/library/urls.py
Normal file
@ -0,0 +1,9 @@
|
||||
from django.urls import path
|
||||
|
||||
from library.views import view_index, edit_person
|
||||
|
||||
app_name = "library"
|
||||
urlpatterns = [
|
||||
path("", view_index, name="index"),
|
||||
path("person/<uuid:uuid>/edit/", edit_person, name="person-edit"),
|
||||
]
|
Reference in New Issue
Block a user