]> git.ozlabs.org Git - patchwork/blob - apps/patchwork/templatetags/person.py
Make the submitter name link to a query for that submitter
[patchwork] / apps / patchwork / templatetags / person.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.html import escape
22 from django.utils.safestring import mark_safe
23 from django.core.urlresolvers import reverse
24 from patchwork.filters import SubmitterFilter
25 import re
26
27 register = template.Library()
28
29 @register.filter
30 def personify(person, project):
31
32     if person.name:
33         linktext = escape(person.name)
34     else:
35         linktext = escape(person.email)
36
37     url = reverse('patchwork.views.patch.list', kwargs = {'project_id' : project.linkname})
38     str = '<a href="%s?%s=%s">%s</a>' % \
39                 (url, SubmitterFilter.param, escape(person.id), linktext)
40
41     return mark_safe(str)
42
43