20 lines
499 B
Python
Executable File
20 lines
499 B
Python
Executable File
from django.urls import path, include
|
|
from . import views
|
|
|
|
|
|
app_name = "generic"
|
|
|
|
urlpatterns = [
|
|
# path('', views.question_list, name='question_list'),
|
|
path("examination/create/",
|
|
views.create_examination,
|
|
name="create_examination"),
|
|
path("examination/ajax/get_examination_id",
|
|
views.get_examination_id,
|
|
name="get_examination_id"),
|
|
path("generic_exam_json_edit",
|
|
views.generic_exam_json_edit,
|
|
name="generic_exam_json_edit"),
|
|
|
|
]
|