Files
Reskreen/studenteval/urls.py
Ambulance Clerc 47fbbd207d Ajout impression
2023-09-12 15:19:17 +02:00

19 lines
538 B
Python

from django.urls import path
from . import views
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'),
]