datatracker/ietf/mailinglists/urls.py
Henrik Levkowetz 0c1105f4bb Added a page that lists all the advertised non-wg mailing lists, based
on data fetched from mailman by a cronjob running the
import_mailman_listinfo managemnt command.  Fixes issue #2438.
 - Legacy-Id: 14587
2018-01-30 15:49:08 +00:00

14 lines
479 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
from django.views.generic import RedirectView
from ietf.mailinglists import views
from ietf.utils.urls import url
urlpatterns = [
url(r'^wg/?$', views.groups),
url(r'^nonwg/?$', views.nonwg),
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)),
]