2011-07-11 02:10:22 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
{% load survex_markup %}
|
|
|
|
|
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.
|
2020-07-28 01:22:06 +01:00
|
|
|
<table width=95%>
|
2011-07-11 02:10:22 +01:00
|
|
|
<tr><th>Scans folder</th><th>Files</th><th>Survex blocks</th></tr>
|
2020-06-23 23:46:33 +01:00
|
|
|
{% for scansfolder in manyscansfolders %}
|
2011-07-11 02:10:22 +01:00
|
|
|
<tr>
|
2020-07-28 01:22:06 +01:00
|
|
|
<td style="padding:2px"><a href="{{scansfolder.get_absolute_url}}">{{scansfolder.walletname}}</a></td>
|
|
|
|
<td align="right" style="padding:2px">{{scansfolder.singlescan_set.all|length}}</td>
|
|
|
|
<td style="padding:2px">
|
2020-06-23 23:46:33 +01:00
|
|
|
{% for survexblock in scansfolder.survexblock_set.all %}
|
2018-04-11 22:02:57 +01:00
|
|
|
<a href="{% url "svx" survexblock.survexfile.path %}">{{survexblock}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2009-09-10 22:07:31 +01:00
|
|
|
{% endblock %}
|