Skip to content

Commit d0c641b

Browse files
committed
Give the WG charter page a name
- Legacy-Id: 4146
1 parent 71b7b17 commit d0c641b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/wginfo/urls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright The IETF Trust 2008, All Rights Reserved
22

3-
from django.conf.urls.defaults import patterns, include
3+
from django.conf.urls.defaults import patterns, include, url
44
from ietf.wginfo import views
55
from django.views.generic.simple import redirect_to
66

@@ -16,7 +16,7 @@
1616
(r'^chartering/$', views.chartering_wgs),
1717
(r'^(?P<acronym>[a-zA-Z0-9-]+)/documents/txt/$', views.wg_documents_txt),
1818
(r'^(?P<acronym>[a-zA-Z0-9-]+)/$', views.wg_documents_html),
19-
(r'^(?P<acronym>[a-zA-Z0-9-]+)/charter/$', views.wg_charter),
19+
url(r'^(?P<acronym>[a-zA-Z0-9-]+)/charter/$', views.wg_charter, name='wg_charter'),
2020
(r'^(?P<acronym>[a-zA-Z0-9-]+)/history/', views.history),
2121
(r'^(?P<acronym>[^/]+)/management/', include('ietf.wgchairs.urls')),
2222
)

0 commit comments

Comments
 (0)