Files @ 8716315b60c0
Branch filter:

Location: website/www/conservancy/apps/assignment/urls.py

Bradley M. Kuhn
Put Karen's doctorate as our featured item.

The video may not work there, but going to try it.
1
2
3
4
5
6
7
8
9
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'),
]