blob: aba30004d64d87b48554e5288d5a1e2b9cc5d214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<div id="files-list">
<ul>
{% for item in listing %}
<li>
{% if item.kind == "file" %}
<a href="{{ item.static_path }}">📄 {{ item.name }}</a>
{% else %}
<a
href="/?show_files=1&dir={{ item.full_path | urlencode }}"
hx-post="/navigate_files/{{ item.full_path | urlencode }}"
hx-trigger="click"
hx-target="#files-list"
hx-swap="outerHTML">📂 {{ item.name }}/</a>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
|