Commit b34940edee8de64a2e4678ee9e0de8fc641fc7d3

Authored by Gust
Committed by Alexandre Barbosa
1 parent aa5f7fe1

Fix mailinglist filter name

Signed-off-by: Gustavo Jaruga <darksshades@gmail.com>
Signed-off-by: Lucas Moura <lucas.moura128@gmail.com>
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
colab/super_archives/filters.py
@@ -10,9 +10,9 @@ def get_filters(request): @@ -10,9 +10,9 @@ def get_filters(request):
10 'fields': ( 10 'fields': (
11 ('author', _(u'Author'), request.get('author')), 11 ('author', _(u'Author'), request.get('author')),
12 ( 12 (
13 - 'list', 13 + 'tag',
14 _(u'Mailinglist'), 14 _(u'Mailinglist'),
15 - request.get('list'), 15 + request.get('tag'),
16 'list', 16 'list',
17 [(v, v) for v in MailingList.objects.values_list( 17 [(v, v) for v in MailingList.objects.values_list(
18 'name', flat=True)] 18 'name', flat=True)]