film2.0/templates/directory.html

40 lines
981 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 != "/" %}
<a href=".">&lt;--</a>
2024-01-25 01:19:00 +00:00
<br /><br />
{% endif %}
2024-01-23 16:31:46 +00:00
2024-02-14 11:04:56 +00:00
<form action="/mass_download" method="GET" id="mass_form">
<input type="submit" value="Download" />
<input type="hidden" name="base" value="{{ path }}" >
</form>
2024-01-25 01:19:00 +00:00
{% for dir in dirs %}
2024-02-14 11:04:56 +00:00
<input type="checkbox" name="file" value="{{ dir }}" form="mass_form"/>
2024-01-25 01:19:00 +00:00
<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 %}
2024-02-14 11:04:56 +00:00
<input type="checkbox" name="file" value="{{ file }}" form="mass_form"/>
2024-01-25 01:19:00 +00:00
<a href="{{ path_join(path, file) }}">{{ file }}</a><br />
{% endfor %}
2024-01-23 16:31:46 +00:00
{% endblock %}