mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-26 18:02:18 +00:00
Fixed permissions - now has same access requirements as rig archive (login_required)
This commit is contained in:
@@ -57,7 +57,7 @@ urlpatterns = patterns('',
|
|||||||
|
|
||||||
# Rigboard
|
# Rigboard
|
||||||
url(r'^rigboard/$', rigboard.RigboardIndex.as_view(), name='rigboard'),
|
url(r'^rigboard/$', rigboard.RigboardIndex.as_view(), name='rigboard'),
|
||||||
url(r'^rigboard/calendar/$', rigboard.WebCalendar.as_view(), name='web_calendar'),
|
url(r'^rigboard/calendar/$', login_required()(rigboard.WebCalendar.as_view()), name='web_calendar'),
|
||||||
url(r'^rigboard/archive/$', RedirectView.as_view(pattern_name='event_archive')),
|
url(r'^rigboard/archive/$', RedirectView.as_view(pattern_name='event_archive')),
|
||||||
|
|
||||||
url(r'^event/(?P<pk>\d+)/$',
|
url(r'^event/(?P<pk>\d+)/$',
|
||||||
|
|||||||
Reference in New Issue
Block a user