Commit b34940edee8de64a2e4678ee9e0de8fc641fc7d3
Committed by
Alexandre Barbosa
1 parent
aa5f7fe1
Exists in
master
and in
5 other branches
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 | 10 | 'fields': ( |
| 11 | 11 | ('author', _(u'Author'), request.get('author')), |
| 12 | 12 | ( |
| 13 | - 'list', | |
| 13 | + 'tag', | |
| 14 | 14 | _(u'Mailinglist'), |
| 15 | - request.get('list'), | |
| 15 | + request.get('tag'), | |
| 16 | 16 | 'list', |
| 17 | 17 | [(v, v) for v in MailingList.objects.values_list( |
| 18 | 18 | 'name', flat=True)] | ... | ... |