commit unversioned files ;)

This commit is contained in:
2025-07-07 11:43:43 +03:00
parent 844a26a287
commit 3ed72beb6c
12 changed files with 184 additions and 19 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from django.urls import path
from booking.views import CreateBookingView
from booking.views import CreateBookingView, BookingListView
urlpatterns = [
path('client/', CreateBookingView.as_view(), name='client_booking'),
path('employee_bookings', BookingListView.as_view(), name='employee_bookings'),
]