mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
789c33fcb6
url in templates now requires quotes roung the first arg USE_TZ added
82 lines
2.1 KiB
HTML
82 lines
2.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
{% load link %}
|
|
|
|
{% block title %}List of survex files{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Surveys for {{cave}}</h1>
|
|
|
|
<p>
|
|
{% for survexdirectory in cave.survexdirectory_set.all %}
|
|
<a href="#T_{{survexdirectory.primarysurvexfile.path}}">{{survexdirectory.path}}</a>
|
|
{% endfor %}
|
|
</p>
|
|
|
|
{% for survexdirectory in cave.survexdirectory_set.all %}
|
|
<h3 id="T_{{survexdirectory.primarysurvexfile.path}}">{{survexdirectory.path}}</h3>
|
|
|
|
<table>
|
|
<tr><th>Survex file</th><th>Block</th><th>Date</th><th>Explorers</th><th>length</th><th>Titles</th><th>Scans</th></tr>
|
|
|
|
{% for survexfile in survexdirectory.survexfile_set.all %}
|
|
<tr>
|
|
{% if survexfile.exists %}
|
|
<td rowspan="{{survexfile.survexblock_set.all|length|plusone}}">
|
|
{% else %}
|
|
<td class="survexnewfile" rowspan="{{survexfile.survexblock_set.all|length|plusone}}">
|
|
{% endif %}
|
|
|
|
{% ifequal survexfile survexdirectory.primarysurvexfile %}
|
|
<a href="{% url "svx" survexfile.path %}"><b>{{survexfile.path}}</b></a>
|
|
{% else %}
|
|
<a href="{% url "svx" survexfile.path %}">{{survexfile.path}}</a>
|
|
{% endifequal %}
|
|
</td>
|
|
</tr>
|
|
|
|
{% for survexblock in survexfile.survexblock_set.all %}
|
|
<tr>
|
|
<td>{{survexblock.name}}</td>
|
|
<td>
|
|
{% if survexblock.expedition %}
|
|
<a href="{{survexblock.expedition.get_absolute_url}}">{{survexblock.date}}</a>
|
|
{% else %}
|
|
{{survexblock.date}}
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td>
|
|
{% for personrole in survexblock.personrole_set.all %}
|
|
{% if personrole.personexpedition %}
|
|
<a href="{{personrole.personexpedition.get_absolute_url}}">{{personrole.personname}}</a>
|
|
{% else %}
|
|
{{personrole.personname}}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
|
|
<td>{{survexblock.totalleglength}}</td>
|
|
|
|
<td>
|
|
{% for survextitle in survexblock.survextitle_set.all %}
|
|
{{survextitle.title}}
|
|
{% endfor %}
|
|
</td>
|
|
|
|
<td>
|
|
{% if survexblock.survexscansfolder %}
|
|
<b><a href="{{survexblock.survexscansfolder.get_absolute_url}}">{{survexblock.survexscansfolder.walletname}}</a></b>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|