]> git.ipfire.org Git - people/jschlag/pbs.git/blame - data/templates/modules/files-table.html
Initial import.
[people/jschlag/pbs.git] / data / 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>
14<div style="clear: both;">&nbsp;</div>