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

@register.simple_tag
def bug_link(bugid):
    return "<a href=\"https://bugs.archlinux.org/task/"+bugid+"\">FS#"+bugid+"</a>"