]> git.ipfire.org Git - people/jschlag/pbs.git/blame - src/templates/modules/files-table.html
Use autotools
[people/jschlag/pbs.git] / src / templates / modules / files-table.html
CommitLineData
9137135a
MT
1<table class="file-list">
2 {% for file in files %}
3 <tr>
4 <td class="actions">
5 <a href="{{ file.download }}">{{ _("Download") }}</a>
6 {% if not file.type == "log" %}
7 | <a href="/file/{{ file.uuid }}">{{ _("Info") }}</a>
8 {% end %}
9 </td>
10 <td class="name">{{ file.name }}</td>
11 </tr>
12 {% end %}
13</table>