]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/modules/repository-table.html
a62d79f29fce66bb3570173545f80def06759afd
[people/jschlag/pbs.git] / data / templates / modules / repository-table.html
1 <table class="table table-striped table-hover">
2 <thead>
3 <tr>
4 <th>{{ _("Name") }}</th>
5 <th>{{ _("No. of builds") }}</th>
6 <th>{{ _("Enabled for builds") }}</th>
7 </tr>
8 </thead>
9 <tbody>
10 {% for repo in repos %}
11 <tr>
12 <td>
13 <a href="/distro/{{ distro.sname }}/repo/{{ repo.name }}">{{ repo.name }}</a>
14 <br />{{ repo.summary or _("N/A") }}
15 </td>
16 <td>
17 {{ repo.build_count() }}
18 </td>
19 <td>
20 {% if repo.enabled_for_builds %}
21 {{ _("Yes") }}
22 {% else %}
23 {{ _("No") }}
24 {% end %}
25 </td>
26 </tr>
27 {% end %}
28 </tbody>
29 </table>