2021-03-28 03:48:04 +01:00
|
|
|
{% 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><No subdirectories>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
{% block margins %}
|
2021-05-04 02:46:56 +01:00
|
|
|
<img src="{{ settings.MEDIA_URL }}/eieshole.jpg">
|
|
|
|
<img src="{{ settings.MEDIA_URL }}/goesser.jpg">
|
2021-03-28 03:48:04 +01:00
|
|
|
{% endblock margins %}
|