diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-24 00:18:01 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-24 00:18:01 +0100 |
commit | c91aa4be475fac06e6d4b55804fac4debc5c1dbf (patch) | |
tree | 02d6952f7a3b956e10bec28eca14c59cb5bd0b7a /templates/manyscansfolders.html | |
parent | 9cd70b31acf70c0df6207211efc629b95a8860d2 (diff) | |
download | troggle-c91aa4be475fac06e6d4b55804fac4debc5c1dbf.tar.gz troggle-c91aa4be475fac06e6d4b55804fac4debc5c1dbf.tar.bz2 troggle-c91aa4be475fac06e6d4b55804fac4debc5c1dbf.zip |
Simple renaming too-similar variables
Diffstat (limited to 'templates/manyscansfolders.html')
-rw-r--r-- | templates/manyscansfolders.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/manyscansfolders.html b/templates/manyscansfolders.html new file mode 100644 index 0000000..00f5bdc --- /dev/null +++ b/templates/manyscansfolders.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% load wiki_markup %} +{% load survex_markup %} + +{% block title %}All Survey scans folders (wallets){% endblock %} + +{% block content %} + +<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. +<table> +<tr><th>Scans folder</th><th>Files</th><th>Survex blocks</th></tr> +{% for scansfolder in manyscansfolders %} + <tr> + <td><a href="{{scansfolder.get_absolute_url}}">{{scansfolder.walletname}}</a></td> + <td>{{scansfolder.singlescan_set.all|length}}</td> + <td> + {% for survexblock in scansfolder.survexblock_set.all %} + <a href="{% url "svx" survexblock.survexfile.path %}">{{survexblock}}</a> + {% endfor %} + </td> + </tr> +{% endfor %} +</table> + +{% endblock %}
\ No newline at end of file |