]> git.ipfire.org Git - people/jschlag/pbs.git/blob - data/templates/modules/log-files-table.html
02a1c37f1afd730f2b5b79fb15463fcf87fedd1b
[people/jschlag/pbs.git] / data / templates / modules / log-files-table.html
1 <table class="table table-striped table-hover">
2 <tbody>
3 {% for file in files %}
4 <tr>
5 <td>
6 <a href="{{ file.download_url }}">{{ file.name }}</a>
7 </td>
8 <td>{{ format_size(file.filesize) }}</td>
9 </tr>
10 {% end %}
11 </tbody>
12 </table>