start building rota functions into site

This commit is contained in:
Ross
2023-12-12 21:57:11 +00:00
parent 026906340a
commit e1d9f1ecad
11 changed files with 248 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from django.urls import path, include
from . import views
app_name = "rota"
urlpatterns = [
path(
"rota/user_details/<int:pk", views.UserRotaDetailUpdate.as_view(), name="user_details_update"
),
]