troggle-unchained/templates/wallet_old.html

35 lines
1.2 KiB
HTML
Raw Normal View History

2022-03-18 12:26:32 +00:00
<!-- wallet_old.html - this text visible because this template has been included -->
2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
2021-05-01 00:18:13 +01:00
{% block title %}Survey Scans Wallet {% endblock %}
2011-07-11 02:10:22 +01:00
{% block content %}
2022-03-18 11:28:35 +00:00
<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.
2011-07-11 02:10:22 +01:00
<table>
2021-04-26 19:50:03 +01:00
{% for singlescan in wallet.singlescan_set.all %}
2011-07-11 02:10:22 +01:00
<tr>
2020-06-24 00:18:01 +01:00
<td class="singlescan"><a href="{{singlescan.get_absolute_url}}">{{singlescan.name}}</a></td>
2011-07-11 02:10:22 +01:00
<td>
2020-06-24 00:18:01 +01:00
{% for survexblock in singlescan.survexblock_set.all %}
2011-07-11 02:10:22 +01:00
{{survexblock}}
{% endfor %}
</td>
</tr>
{% endfor %}
</table>
2020-04-09 02:40:32 +01:00
<h3>Survex surveys referring to this wallet</h3>
2022-03-18 11:28:35 +00:00
<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>.
2011-07-11 02:10:22 +01:00
<table>
2021-04-26 19:50:03 +01:00
{% for survexblock in wallet.survexblock_set.all %}
2011-07-11 02:10:22 +01:00
<tr>
<td><a href="{% url "svx" survexblock.survexfile.path %}">{{survexblock}}</a></td>
2011-07-11 02:10:22 +01:00
</tr>
{% endfor %}
</table>
{% endblock %}