{% extends "base.html" %} {% block title %}List of survex files{% endblock %} {% block content %} {% for cave in caves %} {% autoescape off %}
Cave description: {{cave.url}}
{% for survexdirectory in cave.survexdirectory_set.all %} This cave has a linked survexdirectory: {{survexdirectory.path}} in the database. See the table below. {% empty %}
If you were expecting to see a list of survex files here and a summary table of who did what and when, perhaps because you followed a link from the master caves' survex list page which showed that such survex files clearly existed, and yet there is nothing here but a blank; then this will be because the survex (.svx) files have been stored on the server in the :loser: repository but whoever was responsible has not yet created the appropriate entries in the XML file in the :expoweb: repository. It is the XML file which registers the cave description and ties together the survex files with everything else.
The process for registering a new cave is documented in this part of the survey handbook. {% endfor %}
If you can see a filename here: [ {{cave.survex_file}} ] which does not match any in the list below including the directories beginning with caves-162X/ not just the filename, then (if logged on) you can click here /{{cave.slug}}_cave_edit to go to a form to correct the online data. Instructions for filling in this form are in this part of the survey handbook.
{% for survexdirectory in cave.survexdirectory_set.all %}Survex file | Block | Date | Explorers | length | Titles | Scans |
---|---|---|---|---|---|---|
{% else %} | {% endif %} {% if survexfile == survexdirectory.primarysurvexfile %} {% url "svx" survexfile.path %} {% else %} {% url "svx" survexfile.path %} {% endif %} | |||||
{{survexblock.name}} | {% if survexblock.expedition %} {{survexblock.date|date:"D d M Y"}} {% else %} {% endif %} | {% for personrole in survexblock.survexpersonrole_set.all %} {% if personrole.personexpedition %} {{personrole.personname}} {% else %} {{personrole.personname}} {% endif %} {% endfor %} | {{survexblock.legslength|stringformat:".1f"}} | {{survexblock.title}} | {% if survexblock.scanswallet %} {{survexblock.scanswallet.walletname}} {% endif %} |
{% endfor %} {% endfor %} {% endblock %}