Added printing

This commit is contained in:
David Taylor
2015-08-09 23:39:03 +03:00
committed by Tom Price
parent fe943e12c1
commit ca8ba10efa
10 changed files with 324 additions and 0 deletions

View File

@@ -11,5 +11,6 @@ urlpatterns = patterns('',
name='update_form'),
url(r'^for-event/(?P<event_pk>\d+)/$', permission_required_with_403('rigForms.view_form')(views.FormList.as_view()),
name='form_list'),
url(r'^(?P<pk>\d+)/print/$', permission_required_with_403('rigForms.view_form')(views.FormPrint.as_view()), name='form_print'),
)