]> git.ozlabs.org Git - patchwork/blob - patchwork/templatetags/patch.py
trivial: Resolve some PEP8 issues
[patchwork] / patchwork / templatetags / patch.py
1 # Patchwork - automated patch tracking system
2 # Copyright (C) 2008 Jeremy Kerr <jk@ozlabs.org>
3 #
4 # This file is part of the Patchwork package.
5 #
6 # Patchwork is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # Patchwork is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Patchwork; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 from django import template
21 from django.utils.safestring import mark_safe
22
23 register = template.Library()
24
25
26 @register.filter(name='patch_tags')
27 def patch_tags(patch):
28     counts = []
29     titles = []
30     for tag in patch.project.tags:
31         count = getattr(patch, tag.attr_name)
32         titles.append('%d %s' % (count, tag.name))
33         counts.append(str(count))
34     return mark_safe('<span title="%s">%s</span>' % (
35         ' / '.join(titles),
36         ' '.join(counts)))