Skip to content

Commit 1370942

Browse files
committed
Add a way to reach charter urls given a wg name rather than the charter document name.
- Legacy-Id: 4556
1 parent 22c3ae2 commit 1370942

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ietf/wginfo/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919
(r'^(?P<acronym>[a-zA-Z0-9-]+)/documents/txt/$', views.wg_documents_txt),
2020
(r'^(?P<acronym>[a-zA-Z0-9-]+)/$', views.wg_documents_html, None, "wg_docs"),
2121
(r'^(?P<acronym>[a-zA-Z0-9-]+)/charter/$', views.wg_charter, None, 'wg_charter'),
22+
(r'^(?P<acronym>[A-Za-z0-9-]+)/charter/', include('ietf.wgcharter.urls')),
2223
(r'^(?P<acronym>[a-zA-Z0-9-]+)/history/', views.history),
2324
(r'^(?P<acronym>[a-zA-Z0-9-]+)/edit/', edit.edit, {'action': "edit"}, "wg_edit"),
2425
(r'^(?P<acronym>[a-zA-Z0-9-]+)/conclude/', edit.conclude, None, "wg_conclude"),
2526
(r'^(?P<acronym>[^/]+)/management/', include('ietf.wgchairs.urls')),
27+
2628
)

0 commit comments

Comments
 (0)