19 lines
566 B
Python
19 lines
566 B
Python
from django.urls import path
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from trials.views import TestModelViewSet
|
|
from trials.views import TestTemplateView
|
|
from trials.views import TestValidateAPIView
|
|
from trials.views import TestResultView
|
|
|
|
router = DefaultRouter(trailing_slash=False)
|
|
router.register("items", TestModelViewSet)
|
|
|
|
urlpatterns = [
|
|
path('<int:test_id>/show', TestTemplateView.as_view()),
|
|
path('<int:test_id>/mark', TestValidateAPIView.as_view()),
|
|
path('<int:test_id>/result', TestResultView.as_view())
|
|
]
|
|
|
|
urlpatterns += router.urls
|