mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 07:11:52 +00:00
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!-- wallet_old.html - this text visible because this template has been included -->
|
|
{% 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 %}
|