mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2026-04-21 13:19:34 +01:00
use new upload page for most wallets
This commit is contained in:
33
templates/wallet_old.html
Normal file
33
templates/wallet_old.html
Normal file
@@ -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 %}
|
||||
Reference in New Issue
Block a user