from django.urls import path from manuels.views import AddBookView, ListBooksView, clear_teacher_view, AddSuppliesView, EditBookView, \ EditSuppliesView, DeleteBookView, DeleteSuppliesView, ConfirmTeacherView urlpatterns = [ path('teacher//add_book', AddBookView.as_view(), name='add_book'), path('teacher//add_supplies', AddSuppliesView.as_view(), name='add_supplies'), path('teacher/', ListBooksView.as_view(), name='list_books'), path('teacher//book/', EditBookView.as_view(), name='edit_book'), path('teacher//book//delete', DeleteBookView.as_view(), name='delete_book'), path('teacher//supplies/', EditSuppliesView.as_view(), name='edit_supplies'), path('teacher//supplies//delete', DeleteSuppliesView.as_view(), name='delete_supplies'), path('teacher//confirm', ConfirmTeacherView.as_view(), name='confirm_teacher'), path('clear', clear_teacher_view, name='clear_teacher'), ]