]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/modules/jobs/boxes.html
Drop dependency on textile
[people/jschlag/pbs.git] / src / templates / modules / jobs / boxes.html
1 <div class="jobs-boxes">
2 {% for j in jobs %}
3 <div class="well well-small">
4 <h4>
5 <small class="pull-right">
6 {{ format_time(j.duration, shorter=True) }} &dash;
7 {% module JobState(j) %}
8 </small>
9 <a href="/job/{{ j.uuid }}">{{ j.arch.name }}</a>
10 </h4>
11
12 <ul class="unstyled">
13 {% if j.builder %}
14 <li>
15 {{ _("Builder") }}: <a href="/builder/{{ j.builder.name }}">{{ j.builder.name }}</a>
16 </li>
17 {% end %}
18 </ul>
19 </div>
20 {% end %}
21 </div>