]> git.ipfire.org Git - pbs.git/blob - src/templates/modules/packages-table.html
67ab5d9bf7840fc7b665b86f49300666830acf6f
[pbs.git] / src / templates / modules / packages-table.html
1 <table class="table table-striped table-hover">
2 <thead>
3 <tr>
4 <th>{{ _("Name") }}</th>
5 <th>{{ _("Summary") }}</th>
6 <th>{{ _("Size") }}</th>
7 <th>&nbsp;</th>
8 </tr>
9 </thead>
10 <tbody>
11 {% for package in packages %}
12 <tr>
13 <td>
14 <a href="/package/{{ package.uuid }}">{{ package.friendly_name }}</a>
15 </td>
16 <td>{{ package.summary }}</td>
17 <td>{{ format_size(package.filesize) }}</td>
18 <td>
19 <a class="btn btn-mini" href="{{ job.build.download_prefix }}/{{ package.path }}">
20 <i class="icon-download"></i>
21 {{ _("Download") }}
22 </a>
23 </td>
24 </tr>
25 {% end %}
26 </tbody>
27 </table>