2023-11-27 19:40:06 +11:00
|
|
|
from django.urls import path
|
2021-11-30 16:15:59 +11:00
|
|
|
|
2021-11-30 16:34:26 +11:00
|
|
|
from .views import AssignmentCreateView, AssignmentThanksView
|
2021-11-30 16:15:59 +11:00
|
|
|
|
|
|
|
urlpatterns = [
|
2023-11-27 19:40:06 +11:00
|
|
|
path('', AssignmentCreateView.as_view(), name='assignement-add'),
|
|
|
|
path('<uuid:pk>/', AssignmentThanksView.as_view(), name='assignment-thanks'),
|
2021-11-30 16:15:59 +11:00
|
|
|
]
|