Ajout impression

This commit is contained in:
Ambulance Clerc
2023-09-12 15:19:17 +02:00
parent 1d72a244ea
commit 47fbbd207d
6 changed files with 75 additions and 7 deletions

View File

@@ -10,9 +10,9 @@ app_name = "studenteval"
urlpatterns = [
path('show_pdf/<uuid:pk>/', views.student_eval_detail.as_view(), name='student_eval_detail'),
path('show_pdf_all/<int:Student>/', views.student_eval_list.as_view(), name='student_eval_list'),
path('export_pdf_all/<int:student_id>/', views.export_pdf_all, name='export_pdf_all'),
path('export_pdf/<uuid:pk>/', views.export_pdf, name='export_pdf'),
#path('peremptions', views.view_peremptions, name='view_peremptions'),
]