datatracker/ietf/mailinglists/views.py
Ole Laursen 6c57fe496f Port mailinglists to new schema
- Legacy-Id: 6782
2013-12-03 18:55:26 +00:00

13 lines
475 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
from ietf.group.models import Group
from django.shortcuts import render_to_response
from django.template import RequestContext
def groups(request):
groups = Group.objects.filter(type__in=("wg", "rg"), list_archive__startswith='http').order_by("acronym")
return render_to_response("mailinglists/group_archives.html", { "groups": groups },
context_instance=RequestContext(request))