{% extends "base.html" %} {% block title %}List of survex files{% endblock %} {% block content %}

caves with subdirectories | caves with multiple files | caves with single files

Caves with subdirectories

{% for subdircave, cavefiles, subsurvdirs in subdircaves %}

{{cavefiles.0.1}} - dates and explorers

{% for name, primarycavefile, subcavefiles in subsurvdirs %} {% endfor %}
{{cavefiles.0.1}} {% for cavepath, cavename in cavefiles.1 %} {{cavename}} {% endfor %}
{{name}} {% for cavepath, cavename in subcavefiles %} {{cavename}} {% endfor %}
{% endfor %}

Caves of multiple files

{% for primarycavefile, cavedir, subcavefiles in multifilecaves %} {% endfor %}
Dates and explorersSurvex files
{{cavedir}} {{primarycavefile.1}} - {% for cavepath, cavename in subcavefiles %} {{cavename}} {% endfor %}

Caves of one file

{% for cavepath, cavename in onefilecaves %} {{cavename}} {% endfor %}

{% endblock %}