2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-23 07:41:52 +00:00
troggle/templates/wallet.html

34 lines
736 B
HTML
Raw Normal View History

2011-07-11 02:10:22 +01:00
{% extends "base.html" %}
2021-04-02 20:41:42 +01:00
2011-07-11 02:10:22 +01:00
{% load survex_markup %}
2020-04-09 02:40:32 +01:00
{% block title %}Survey Scans Folder{% 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 %}