mirror of
https://github.com/YGGverse/btracker.git
synced 2026-03-31 17:15:31 +00:00
implement clickable preload files, rename static to public, rename preload config argument to public, rename Storage to Public
This commit is contained in:
parent
bff6b209c9
commit
6b149ba1b9
13 changed files with 77 additions and 51 deletions
|
|
@ -31,7 +31,13 @@
|
|||
<tbody>
|
||||
{% for file in files_list %}
|
||||
<tr>
|
||||
<td>{{ file.path }}</td>
|
||||
<td>
|
||||
{% if file.href %}
|
||||
<a href="{{ file.href }}">{{ file.path }}</a>
|
||||
{% else %}
|
||||
{{ file.path }}
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ file.size }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue