]> git.ipfire.org Git - people/jschlag/pbs.git/blame - data/templates/modules/build-headline.html
search page: Shrink headings.
[people/jschlag/pbs.git] / data / templates / modules / build-headline.html
CommitLineData
f6e6ff79
MT
1<div class="page-header">
2 <div class="pull-right">
3 {% if pkg.critical_path %}
4 <span class="label label-important pull-right">{{ _("Critical path") }}</span>
5 {% end %}
6
7 {% if not short %}
8 {% if build.type == "release" %}
9 <span class="label label-success">{{ _("Release build") }}</span>
10 {% elif build.type == "scratch" %}
11 <span class="label label-important">{{ _("Scratch build") }}</span>
12 {% end %}
13 {% end %}
14 </div>
15
c21cb4ec 16 <h2>
f6e6ff79
MT
17 {% if prefix %}
18 {{ prefix }}:
19 {% end %}
20
21 {% if shorter %}
5aa556bf 22 {{ pkg.name }}
f6e6ff79 23 {% else %}
5aa556bf 24 {{ build.name }}
f6e6ff79 25 {% end %}
f6e6ff79 26
5aa556bf 27 <small>{{ pkg.summary }}</small>
c21cb4ec 28 </h2>
f6e6ff79 29</div>