mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-20 15:02:31 +00:00
Added view, doesn't yet submit
This commit is contained in:
11
rigForms/urls.py
Normal file
11
rigForms/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.conf.urls import patterns, url
|
||||
|
||||
from PyRIGS.decorators import permission_required_with_403
|
||||
|
||||
from rigForms import views
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^create/(?P<type_pk>\d+)/for-event/(?P<event_pk>\d+)/$', permission_required_with_403('rigForms.create_form')(views.FormCreate.as_view()),
|
||||
name='create_form'),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user