aboutsummaryrefslogtreecommitdiffstats
path: root/templates/fragments/file_browser.html
blob: 54a0f35f8a533c502d66c27cb7a4d516b4859e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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="#file-browser"
      hx-swap="outerHTML">📂 {{ item.name }}/</a>
  {% endif %}
  </li>
{% endfor %}
</ul>