13 lines
476 B
Python
13 lines
476 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'pp_viewer'
|
|
|
|
urlpatterns = [
|
|
path('lecturer', views.lecturer, name='lecturer'),
|
|
path('subject', views.subject, name='subject'),
|
|
path('exam', views.exam, name='exam'),
|
|
path('student', views.student, name='student'),
|
|
path('studentExam/<int:student_id>/', views.examsForStudent, name='examForStudent'),
|
|
path('lecturerExam/<str:lecturer_id>/', views.examsForLecturer, name='examForLecturer'),
|
|
] |