from django.urls import path from . import views app_name = "studenteval" urlpatterns = [ path('show_pdf//', views.student_eval_detail.as_view(), name='student_eval_detail'), path('show_pdf_all//', views.student_eval_list.as_view(), name='student_eval_list'), #path('peremptions', views.view_peremptions, name='view_peremptions'), ]