aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates/static/directory_index
blob: 61e7f023a9cfa222f093c2f0312ca8f22e955711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

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

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

{% endblock %}