{% extends "base.html" %} {% block title %}Directory listing for /{{ cur_path }}{% endblock %} {% block head %} {% endblock %} {% block content %}

Directory listing for /{{ cur_path }}


    {% if cur_path != "" %}
  1. ../
  2. {% endif %} {% for file in lister.files %} {% if file.is_file %}
  3. {{file.name}}
  4. {% else %}
  5. {{file.name}}/
  6. {% endif %} {% endfor %}

{% endblock %} {% block foot %} {% endblock %}