18 lines
244 B
Python
18 lines
244 B
Python
from django.urls import path
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
app_name = "studenteval"
|
|
|
|
urlpatterns = [
|
|
path('student/<string>', views.student, name='views.student'),
|
|
#path('peremptions', views.view_peremptions, name='view_peremptions'),
|
|
|
|
|
|
|
|
]
|
|
|