2011-07-11 02:10:22 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load wiki_markup %}
|
|
|
|
{% load survex_markup %}
|
|
|
|
|
|
|
|
{% block title %}Tunnel files{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2020-04-19 23:35:41 +01:00
|
|
|
<h3>All Tunnel files - references to wallets and survey scans</h3>
|
2011-07-11 02:10:22 +01:00
|
|
|
<table>
|
2020-04-19 23:35:41 +01:00
|
|
|
<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>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% for tunnelfile in tunnelfiles %}
|
|
|
|
<tr>
|
2018-04-11 22:02:57 +01:00
|
|
|
<td><a href="{% url "tunnelfile" tunnelfile.tunnelpath %}">{{tunnelfile.tunnelpath}}</a></td>
|
2011-07-11 02:10:22 +01:00
|
|
|
<td>{{tunnelfile.bfontcolours}}</td>
|
|
|
|
<td>{{tunnelfile.filesize}}</td>
|
|
|
|
<td>{{tunnelfile.npaths}}</td>
|
|
|
|
|
|
|
|
<td>
|
2020-06-23 23:46:33 +01:00
|
|
|
{% for scansfolder in tunnelfile.manyscansfolders.all %}
|
|
|
|
<a href="{{scansfolder.get_absolute_url}}">{{scansfolder.walletname}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
{% for survexscansingle in tunnelfile.survexscans.all %}
|
|
|
|
<a href="{{survexscansingle.get_absolute_url}}">{{survexscansingle.name}}</a>
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
{% for rtunnelfile in tunnelfile.tunnelcontains.all %}
|
2018-04-11 22:02:57 +01:00
|
|
|
<a href="{% url "tunnelfile" rtunnelfile.tunnelpath %}">{{rtunnelfile.tunnelpath}}</a>
|
2011-07-11 02:10:22 +01:00
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2009-09-11 23:56:47 +01:00
|
|
|
{% endblock %}
|