Removed the stream editing form - that functionality is on the edit info form. Put the old-ADs back into the list of choices when editing a document's info. This (re) fixes bug #749 - Legacy-Id: 4356
13 lines
640 B
Python
13 lines
640 B
Python
# Copyright The IETF Trust 2008, All Rights Reserved
|
|
|
|
from django.conf.urls.defaults import patterns, url
|
|
from django.views.generic.simple import redirect_to
|
|
|
|
urlpatterns = patterns('ietf.ietfworkflows.views',
|
|
url(r'^(?P<name>[^/]+)/history/$', 'stream_history', name='stream_history'),
|
|
url(r'^(?P<name>[^/]+)/edit/adopt/$', 'edit_adopt', name='edit_adopt'),
|
|
url(r'^(?P<name>[^/]+)/edit/state/$', 'edit_state', name='edit_state'),
|
|
url(r'^(?P<name>[^/]+)/edit/stream/$', redirect_to, { 'url': '/doc/%(name)s/edit/info/'}) ,
|
|
url(r'^delegates/(?P<stream_name>[^/]+)/$', 'stream_delegates', name='stream_delegates'),
|
|
)
|