mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-25 08:41:51 +00:00
42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% load wiki_markup %}
|
|
{% load survex_markup %}
|
|
|
|
{% block title %}Tunnel files{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>All Tunnel files - references to wallets and survey scans</h3>
|
|
<table>
|
|
<tr><th>File</th><th>Font</th><th>Size</th><th>Paths</th><th>Scans folder</th><th>Scan files</th><th>Frames</th></tr>
|
|
{% for tunnelfile in tunnelfiles %}
|
|
<tr>
|
|
<td><a href="{% url "tunnelfile" tunnelfile.tunnelpath %}">{{tunnelfile.tunnelpath}}</a></td>
|
|
<td>{{tunnelfile.bfontcolours}}</td>
|
|
<td>{{tunnelfile.filesize}}</td>
|
|
<td>{{tunnelfile.npaths}}</td>
|
|
|
|
<td>
|
|
{% for scansfolder in tunnelfile.manyscansfolders.all %}
|
|
<a href="{{scansfolder.get_absolute_url}}">{{scansfolder.walletname}}</a>
|
|
{% endfor %}
|
|
</td>
|
|
|
|
<td>
|
|
{% for singlescan in tunnelfile.scans.all %}
|
|
<a href="{{singlescan.get_absolute_url}}">{{singlescan.name}}</a>
|
|
{% endfor %}
|
|
</td>
|
|
|
|
<td>
|
|
{% for rtunnelfile in tunnelfile.tunnelcontains.all %}
|
|
<a href="{% url "tunnelfile" rtunnelfile.tunnelpath %}">{{rtunnelfile.tunnelpath}}</a>
|
|
{% endfor %}
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %} |