]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/builder-list.html
Initial import.
[people/jschlag/pbs.git] / data / templates / builder-list.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Build servers") }}{% end block %}
4
5 {% block body %}
6 <h1>{{ _("Build servers") }}</h1>
7
8 <p>
9 {{ _("Builders are those, that do all the hard work.") }}
10 {{ _("Build jobs are scheduled to these hosts that they process and send back the result.") }}
11 </p>
12
13 <ul class="builders">
14 {% for builder in builders %}
15 <li>
16 <a class="builder {{ builder.status.lower() }}" href="/builder/{{ builder.name }}">{{ builder.name }}</a>
17 </li>
18 {% end %}
19 </ul>
20 {% end block %}
21
22 {% if current_user.is_admin() %}
23 {% block sidebar %}
24 <h1>{{ _("Actions") }}</h1>
25 <ul>
26 <li><a href="/builder/new">{{ _("Create new builder") }}</a></li>
27 </ul>
28 {% end block %}
29 {% end %}