Files
Steve Kossouho e3ebf6bf4f Add documentation and source
Added documentation, source and extra files.
2025-07-02 20:26:50 +02:00

10 lines
231 B
Python

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"),
]