Files @ 2a4bc19c492f
Branch filter:

Location: website/conservancy/assignment/urls.py

Denver Gingerich
Update Vizio trial date/note; more updates to come
1
2
3
4
5
6
7
8
from django.urls import path

from .views import AssignmentCreateView, AssignmentThanksView

urlpatterns = [
    path('', AssignmentCreateView.as_view(), name='assignement-add'),
    path('<uuid:pk>/', AssignmentThanksView.as_view(), name='assignment-thanks'),
]