troggle-unchained/templates/wallet.html

30 lines
709 B
HTML
Raw Normal View History

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 %}
2021-04-26 19:50:03 +01:00
<h3>Survey Scans in: {{wallet.walletname}}</h3>
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>
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 %}