seitime-frappe/frappe/desk/page/backups/backups.html
Alex Ford 78c03b90c3 lgtm minor fixes (#3580)
* Replace a typeof test against undefined with comparison against a string

* Add rel='noopener noreferrer' attributes to target='_blank' links

* Remove a duplicate object property definition

* Remove superfluous argument to function call

* Remove some variable declarations for which the assigned value is never read

* Remove an assignment to a variable that is never read
2017-07-03 12:25:07 +05:30

32 lines
750 B
HTML

<!-- jinja -->
<table class="table table-striped table-bordered" style="max-width: 600px;">
<thead>
<tr>
<th style="width: 30%;">
{{ _("Date") }}
</th>
<th style="width: 50%;">
{{ _("File") }}
</th>
<th>
{{ _("Size") }}
</th>
</tr>
</thead>
<tbody>
{% for f in files %}
<tr>
<td>
{{ f[1] }}
</td>
<td>
<a href="{{ f[0] }}" target="_blank" rel="noopener noreferrer">{{ f[0] }}</a>
</td>
<td>
{{ f[2] }}
</td>
</tr>
{% endfor %}
</tbody>
</table>