implement clickable preload files, rename static to public, rename preload config argument to public, rename Storage to Public

This commit is contained in:
yggverse 2025-08-09 23:11:46 +03:00
parent bff6b209c9
commit 6b149ba1b9
13 changed files with 77 additions and 51 deletions

View file

@ -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 %}