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