Files @ 02efd52c4883
Branch filter:

Location: website/conservancy/assignment/urls.py

bsturmfels
Update README - overview, licenses and Ansible
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'),
]