]> git.ipfire.org Git - people/jschlag/pbs.git/blame - data/templates/user-profile-builds.html
Update translation.
[people/jschlag/pbs.git] / data / templates / user-profile-builds.html
CommitLineData
f6e6ff79
MT
1{% extends "base.html" %}
2
3{% block body %}
5aa556bf 4 <h1>{{ _("Builds by %s") % user.realname }}</h1>
f6e6ff79
MT
5
6 {% if builds %}
7
8 {% for order, items in sorted(builds.items()) %}
9 {{ order }}
10
4c6be289 11 {% module BuildTable(items) %}
f6e6ff79
MT
12 {% end %}
13
14 {% else %}
15
16 {{ _("No builds found matching your search criteria.") }}
17
18 {% end %}
19{% end block %}
20