files.html 315 字节
Newer Older
A
air9 已提交
1 2
{% extends "base.html" %}

3
{% block title %}OECH{% endblock %}
A
air9 已提交
4 5 6 7 8 9 10 11 12 13 14

{% block page_content %}
    <div class="page-header">
        <h3>Directory listing for /files</h3>
    </div>
    <ul>
    {% for file in files %}
        <li><a href="/files/{{ file }}">{{ file }}</a></li>
    {% endfor %}
    </ul>
{% endblock %}