summaryrefslogtreecommitdiffstats
path: root/bn_django/templates/static/directory_index
diff options
context:
space:
mode:
Diffstat (limited to 'bn_django/templates/static/directory_index')
-rw-r--r--bn_django/templates/static/directory_index18
1 files changed, 18 insertions, 0 deletions
diff --git a/bn_django/templates/static/directory_index b/bn_django/templates/static/directory_index
new file mode 100644
index 0000000..61e7f02
--- /dev/null
+++ b/bn_django/templates/static/directory_index
@@ -0,0 +1,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 %}