summaryrefslogtreecommitdiffstats
path: root/templates/wallet_old.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/wallet_old.html')
-rw-r--r--templates/wallet_old.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/wallet_old.html b/templates/wallet_old.html
new file mode 100644
index 0000000..7bfac41
--- /dev/null
+++ b/templates/wallet_old.html
@@ -0,0 +1,33 @@
+{% extends "base.html" %}
+{% block title %}Survey Scans Wallet {% endblock %}
+{% block content %}
+
+<h3>Survey Scans in old wallet: {{wallet.walletname}}</h3>
+<p>Wallets of 1999 and earlier are in a different structure and have not yet been edited to conform to the current
+name format and folder structure.
+<table>
+{% for singlescan in wallet.singlescan_set.all %}
+ <tr>
+ <td class="singlescan"><a href="{{singlescan.get_absolute_url}}">{{singlescan.name}}</a></td>
+ <td>
+ {% for survexblock in singlescan.survexblock_set.all %}
+ {{survexblock}}
+ {% endfor %}
+ </td>
+ </tr>
+{% endfor %}
+</table>
+
+<h3>Survex surveys referring to this wallet</h3>
+<p><b>*ref</b> references have not been configured in most old survex files,
+so it is unlikley that you will see anything here. To find survex files for this year look in the
+survex column of the <a href="/expedition/1999">expedition page</a>.
+<table>
+{% for survexblock in wallet.survexblock_set.all %}
+ <tr>
+ <td><a href="{% url "svx" survexblock.survexfile.path %}">{{survexblock}}</a></td>
+ </tr>
+{% endfor %}
+</table>
+
+{% endblock %}