Removed unused page /list/area/ (no links, no hits, no information really)

- Legacy-Id: 2013
This commit is contained in:
Pasi Eronen 2010-02-24 12:29:17 +00:00
parent 3e5f290686
commit fb45363a26
3 changed files with 0 additions and 21 deletions

View file

@ -1,4 +1,3 @@
200 /list/area/
200 /list/wg/
301 /list/nonwg/
301 /list/nonwg/update/

View file

@ -4,7 +4,6 @@ from django.conf.urls.defaults import patterns
from ietf.idtracker.models import Area, IETFWG
urlpatterns = patterns('django.views.generic.list_detail',
(r'^area/$', 'object_list', { 'queryset': Area.objects.filter(status=1).select_related().order_by('acronym.acronym'), 'template_name': 'mailinglists/areas_list.html' }),
(r'^wg/$', 'object_list', { 'queryset': IETFWG.objects.filter(email_archive__startswith='http'), 'template_name': 'mailinglists/wgwebmail_list.html' }),
)
urlpatterns += patterns('',

View file

@ -1,19 +0,0 @@
{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% extends "base.html" %}
{% block title %}IETF Area Mailing Lists{% endblock %}
{% block content %}
<center><font size=+2>IETF Area Mailing Lists</font></center>
<br>
Below are the e-mail addresses of the IETF Area mailing lists. Please include the applicable IETF Area mailing list in the Cc list of every liaison statement sent to an IETF Area.
<br>
<blockquote>
<table cellpadding="4" cellspacing="0" border="0">
{% for area in object_list %}
<tr>
<td><li>{{ area.area_acronym.name }}:</td><td> {{ area.area_acronym.acronym }}-chairs@ietf.org</td>
</tr>
{% endfor %}
</table>
{% endblock %}