]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/templates/modules/updates-table.html
Merge branch 'master' of git://git.ipfire.org/pbs
[people/jschlag/pbs.git] / src / templates / modules / updates-table.html
1 <table class="table table-striped table-hover">
2 <tbody>
3 {% for update in updates %}
4 <tr>
5 <td>
6 {% if update.severity == "bugfix" %}
7 <i class="icon-ok-sign"></i>
8 {% elif update.severity == "enhancement" %}
9 <i class="icon-plus-sign"></i>
10 {% else %}
11 <i class="icon-question-sign"></i>
12 {% end %}
13 {{ update.build.update_id }}
14 -
15 <a href="/build/{{ update.build.uuid }}">{{ update.name }}</a>
16 </td>
17 <td>
18 {{ _("Score:") }} {{ update.score }} -
19 {{ format_date(update.when) }}
20 </td>
21 </tr>
22 {% end %}
23 </tbody>
24 </table>