This commit is contained in:
Ross
2021-02-05 11:28:05 +00:00
parent d8167aa95f
commit 542848f4d0
7 changed files with 68 additions and 6 deletions
+14
View File
@@ -0,0 +1,14 @@
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"),
]