Files
Reskreen/studenteval/urls.py
Ambulance Clerc e099b9e8da bientôt a alpha
2023-09-09 19:20:08 +02:00

19 lines
377 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('peremptions', views.view_peremptions, name='view_peremptions'),
]