summaryrefslogtreecommitdiff
path: root/main/templatetags/bugs.py
blob: 7e00ce5795f41048d229a31ab1a4e00d764af04e (plain)
1
2
3
4
5
6
7
from django import template
register = template.Library()

@register.simple_tag
def bug_link(bugid):
    # FIXME: this needs rebranded, but I'm not sure it gets called anywhere
    return "<a href=\"https://bugs.archlinux.org/task/{0}\">FS#{0}</a>".format(bugid)