film2.0/templates/directory.html

39 lines
753 B
HTML
Raw Normal View History

2024-01-23 16:31:46 +00:00
{% extends 'base.html' %}
{% block title %}{{ path }}{% endblock %}
{% block body %}
2024-01-24 22:53:32 +00:00
2024-01-25 01:19:00 +00:00
<form action="/search" method="GET">
<input type="text" name="q" />
<input type="submit" value="Buscar" />
</form>
<br />
2024-01-23 16:31:46 +00:00
2024-01-25 01:19:00 +00:00
{% if path != "/" %}
2024-02-14 12:35:34 +00:00
<a href="../">&lt;--</a>
2024-01-25 01:19:00 +00:00
<br /><br />
{% endif %}
2024-01-23 16:31:46 +00:00
2024-01-25 01:19:00 +00:00
{% for dir in dirs %}
<a href="{{ path_join(path, dir) }}">{{ dir }}</a><br />
{% endfor %}
2024-01-23 16:31:46 +00:00
2024-01-25 01:19:00 +00:00
<br /><br />
2024-01-23 16:31:46 +00:00
{% if files|length > 0 %}
2024-01-25 01:19:00 +00:00
<h3>Archivos</h3>
{% endif %}
2024-01-25 01:19:00 +00:00
{% for file in files %}
<a href="{{ path_join(path, file) }}">{{ file }}</a><br />
{% endfor %}
2024-01-23 16:31:46 +00:00
2024-02-14 13:01:25 +00:00
{% if footer not in [None, False, ""] %}
<footer>
{{ footer }}
</footer>
{% endif %}
2024-01-23 16:31:46 +00:00
{% endblock %}