Keep the ordering for drafts the same on iesg/agenda and iesg/agenda/documents Allow setting the responsible AD for a charter document Change the UI of the charter page to use editlink for changing attributes and buttons for actions (to align with drafts and conflict-reviews) - Legacy-Id: 4769
17 lines
1 KiB
Python
17 lines
1 KiB
Python
# Copyright The IETF Trust 2011, All Rights Reserved
|
|
|
|
from django.conf.urls.defaults import patterns, url
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^state/$', "ietf.wgcharter.views.change_state", name='charter_change_state'),
|
|
url(r'^(?P<option>initcharter|recharter|abandon)/$', "ietf.wgcharter.views.change_state", name='charter_startstop_process'),
|
|
url(r'^telechat/$', "ietf.wgcharter.views.telechat_date", name='charter_telechat_date'),
|
|
url(r'^notify/$', "ietf.wgcharter.views.edit_notify", name='charter_edit_notify'),
|
|
url(r'^ad/$', "ietf.wgcharter.views.edit_ad", name='charter_edit_ad'),
|
|
url(r'^(?P<ann>action|review)/$', "ietf.wgcharter.views.announcement_text", name="charter_edit_announcement"),
|
|
url(r'^ballotwriteupnotes/$', "ietf.wgcharter.views.ballot_writeupnotes"),
|
|
url(r'^approve/$', "ietf.wgcharter.views.approve", name='charter_approve'),
|
|
url(r'^submit/$', "ietf.wgcharter.views.submit", name='charter_submit'),
|
|
url(r'^submit/(?P<option>initcharter|recharter)/$', "ietf.wgcharter.views.submit", name='charter_submit'),
|
|
)
|