Add form drafts API (#52)

This commit is contained in:
2018-04-14 12:40:42 +10:00
parent 0317535c11
commit 08bb577e37
6 changed files with 163 additions and 2 deletions

View File

@ -13,6 +13,7 @@ urlpatterns = [
url(r'^case-study/create/short/?$', views.ShortForm.as_view(), name='short-form'),
url(r'^case-study/create/long/?$', views.LongForm.as_view(), name='long-form'),
url(r'^case-study/create/success/?$', views.FormSuccess.as_view(), name='form-success'),
url(r'^case-study/draft/?$', views.Drafts.as_view(), name='drafts'),
url(r'^case-study/(?P<slug>[-\w]+)/?$', views.CaseStudyDetail.as_view(), name='detail'),
url(r'^map/?$', views.Map.as_view(), name='map')
]