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

Directory listing for /{{ cur_path }}


    {% for file in lister.files %} {% if file.is_file %}
  1. {{file.name}}
  2. {% else %}
  3. {{file.name}}/
  4. {% endif %} {% endfor %}

{% endblock %}