12 lines
528 B
Python
12 lines
528 B
Python
# Copyright The IETF Trust 2007, All Rights Reserved
|
|
|
|
from django.conf.urls import url
|
|
from django.views.generic import RedirectView
|
|
|
|
urlpatterns = [
|
|
url(r'^wg/$', 'ietf.mailinglists.views.groups'),
|
|
url(r'^nonwg/$', RedirectView.as_view(url='https://www.ietf.org/list/nonwg.html', permanent=True)),
|
|
url(r'^nonwg/update/$', RedirectView.as_view(url='https://www.ietf.org/list/nonwg.html', permanent=True)),
|
|
url(r'^request/$', RedirectView.as_view(url='https://www.ietf.org/list/request.html', permanent=True)),
|
|
]
|