2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/templates/manywallets.html

39 lines
1.5 KiB
HTML
Raw Normal View History

2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
2021-04-02 20:41:42 +01:00
2020-05-14 17:21:34 +01:00
{% block title %}All Survey scans folders (wallets){% endblock %}
2011-07-11 02:10:22 +01:00
{% block content %}
2020-05-14 17:21:34 +01:00
<h3>All Survey scans folders (wallets)</h3>
<p>Each wallet contains the scanned original in-cave survey notes and sketches of
plans and elevations. It also contains scans of centre-line survex output on which
hand-drawn passage sections are drawn. These hand-drawn passages will eventually be
traced to produce Tunnel or Therion drawings and eventually the final complete cave survey.
2022-07-05 12:14:03 +01:00
<!-- This should all be restructured to use .prefetch_related() and .select_related()
see https://docs.djangoproject.com/en/3.2/ref/models/querysets/#prefetch-related
-->
<table width=95%>
2021-05-01 00:19:04 +01:00
<tr><th>Scans folder</th><th>Files</th><th>Survex blocks</th><th>Cave</th></tr>
2021-04-26 19:50:03 +01:00
{% for scanswallet in manywallets %}
2011-07-11 02:10:22 +01:00
<tr>
2021-04-26 19:50:03 +01:00
<td style="padding:2px"><a href="{{scanswallet.get_absolute_url}}">{{scanswallet.walletname}}</a></td>
<td align="right" style="padding:2px">{{scanswallet.singlescan_set.all|length}}</td>
<td style="padding:2px">
2021-04-26 19:50:03 +01:00
{% for survexblock in scanswallet.survexblock_set.all %}
<a href="{% url "svx" survexblock.survexfile.path %}">{{survexblock}}</a>
2011-07-11 02:10:22 +01:00
{% endfor %}
</td>
2021-05-01 00:19:04 +01:00
<td style="padding:2px">
{% for survexblock in scanswallet.survexblock_set.all %}
{% ifchanged survexblock.survexfile.cave %}
2022-03-18 20:45:40 +00:00
<a href="/{{survexblock.survexfile.cave.url}}">/{{survexblock.survexfile.cave.slug}}</a>
2021-05-01 00:19:04 +01:00
{% endifchanged %}
{% endfor %}
</td>
2011-07-11 02:10:22 +01:00
</tr>
{% endfor %}
</table>
2009-09-10 22:07:31 +01:00
{% endblock %}