film2.0/templates/directory.html

22 lines
363 B
HTML

{% extends 'base.html' %}
{% block title %}{{ path }}{% endblock %}
{% block body %}
<a href="..">&lt;--</a>
<br /><br />
{% for dir in dirs %}
<a href="{{ path_join(path, dir) }}">{{ dir }}</a><br />
{% endfor %}
<br /><br />
<h3>Archivos</h3>
{% for file in files %}
<a href="{{ path_join(path, file) }}">{{ file }}</a><br />
{% endfor %}
{% endblock %}