summaryrefslogtreecommitdiffstats
path: root/bn_django/templates/static/directory_index.html
blob: 6df279d072e0c216532a8f3ece1736a7066f6871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block title %}
<h1>Index of {{ directory }}</h1>
{% endblock %}

{% block content %}
<ul>
{% for f in file_list %}
<li><a href="{{ f }}">{{ f }}</a></li>
{% endfor %}
</ul>
{% endblock %}