Allow the secretariat and ads to change the title of a status change
document. Fixes bug 1141.
Applied changes to adapt the code from Django 1.2 to 1.6: Provide a
quoted string to {% url %} and use request.user.person instead of
request.user.get_profile().
- Legacy-Id: 7221
Note: SVN reference [6361] has been migrated to Git commit 7c4cf7002f
15 lines
883 B
Python
15 lines
883 B
Python
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns('ietf.doc.views_status_change',
|
|
url(r'^state/$', "change_state", name='status_change_change_state'),
|
|
url(r'^submit/$', "submit", name='status_change_submit'),
|
|
url(r'^notices/$', "edit_notices", name='status_change_notices'),
|
|
url(r'^ad/$', "edit_ad", name='status_change_ad'),
|
|
url(r'^title/$', "edit_title", name='status_change_title'),
|
|
url(r'^approve/$', "approve", name='status_change_approve'),
|
|
url(r'^telechat/$', "telechat_date", name='status_change_telechat_date'),
|
|
url(r'^relations/$', "edit_relations", name='status_change_relations'),
|
|
url(r'^last-call/$', "last_call", name='status_change_last_call'),
|
|
)
|
|
|