summaryrefslogtreecommitdiffstats
path: root/templates/dirdisplay.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/dirdisplay.html')
-rw-r--r--templates/dirdisplay.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/dirdisplay.html b/templates/dirdisplay.html
new file mode 100644
index 0000000..39460a7
--- /dev/null
+++ b/templates/dirdisplay.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block title %}Cambridge Expeditions to Austria{% endblock %}
+
+{% block content %}
+
+<div id="col1">
+<h3>{{filepath}}/</h3>
+
+{% for f in fileitems %}
+<a href="/{{ f.0 }}">{{ f.1 }}</a><br />
+{% endfor %}
+
+<p>
+<h3>{{filepath}}/</h3>
+
+{% for d in diritems %}
+<a href="/{{ d.0 }}">/{{ d.1 }}/<br />
+{% empty %}
+<p>&lt;No subdirectories&gt;
+{% endfor %}
+
+{% endblock content %}
+
+{% block margins %}
+<img src="{{ settings.MEDIA_URL }}eieshole.jpg">
+<img src="{{ settings.MEDIA_URL }}goesser.jpg">
+{% endblock margins %} \ No newline at end of file