summaryrefslogtreecommitdiffstats
path: root/bn_django/templates/static/directory_index
diff options
context:
space:
mode:
authorbnewbold <bnewbold@manus.(none)>2007-02-06 23:34:08 -0800
committerbnewbold <bnewbold@manus.(none)>2007-02-06 23:34:08 -0800
commitb88372f0327976c31e6b508b26729bab60743f82 (patch)
tree16958c4395bc881399e475a927162e8837d67310 /bn_django/templates/static/directory_index
parentf025a9f65ecd76e4442ce62684218ecb81506c9b (diff)
downloadbnewnet-b88372f0327976c31e6b508b26729bab60743f82.tar.gz
bnewnet-b88372f0327976c31e6b508b26729bab60743f82.zip
photos app roughed in, style tweaked
TODO: search code
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 %}