Files @ 2f40b9c23b90
Branch filter:

Location: website/conservancy/assignment/urls.py

bsturmfels
usethesource: Emphasize "Use the Source"
1
2
3
4
5
6
7
8
from django.conf.urls import url

from .views import AssignmentCreateView, AssignmentThanksView

urlpatterns = [
    url(r'^$', AssignmentCreateView.as_view(), name='assignement-add'),
    url(r'^(?P<pk>[\w-]+)/$', AssignmentThanksView.as_view(), name='assignment-thanks'),
]