mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
<!-- walletindex.html - this text visible because this template has been included -->
|
|
{% extends "base.html" %}
|
|
{% block title %}Wallet Scanned Index Pages{% endblock %}
|
|
{% block content %}
|
|
|
|
<h3>Wallet Index Scanned Pages: {{wallet.walletname|slice:'0:4'}}</h3>
|
|
|
|
<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>
|
|
|
|
<p><em>
|
|
<a href="/wallets/year/{{wallet.walletname|slice:'0:4'}}">Wallet index for this year</a> {{wallet.walletname|slice:'0:4'}}
|
|
<br />
|
|
<a href="/expedition/{{wallet.walletname|slice:'0:4'}}">Expedition page for this year </a> {{wallet.walletname|slice:'0:4'}}
|
|
<br />
|
|
<a href="/scanupload/{{wallet.walletname|slice:'0:4'}}:01">First wallet for this year </a> {{wallet.walletname|slice:'0:4'}}
|
|
<br />
|
|
<a href="/scanupload/{{wallet.walletname|slice:'0:4'}}:00">Lost+Found wallet for this year </a> {{wallet.walletname|slice:'0:4'}}
|
|
</em>
|
|
|
|
{% endblock %}
|