Files
Reskreen/studenteval/urls.py

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