summaryrefslogtreecommitdiffstats
path: root/templates/tunnelfiles.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tunnelfiles.html')
-rw-r--r--templates/tunnelfiles.html18
1 files changed, 8 insertions, 10 deletions
diff --git a/templates/tunnelfiles.html b/templates/tunnelfiles.html
index 472bd59..9c527b9 100644
--- a/templates/tunnelfiles.html
+++ b/templates/tunnelfiles.html
@@ -7,34 +7,32 @@
{% 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>
+<table style="font-size: 85%" width=95%>
+<tr><th>File</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 align="right" style="padding:2px">{{tunnelfile.filesize}}</td>
+ <td align="right" style="padding:2px">{{tunnelfile.npaths}}</td>
- <td>
+ <td style="padding:2px">
{% for scansfolder in tunnelfile.manyscansfolders.all %}
<a href="{{scansfolder.get_absolute_url}}">{{scansfolder.walletname}}</a>
{% endfor %}
</td>
- <td>
+ <td style="padding:2px">
{% for singlescan in tunnelfile.scans.all %}
<a href="{{singlescan.get_absolute_url}}">{{singlescan.name}}</a>
{% endfor %}
</td>
- <td>
+ <td style="padding:2px">
{% for rtunnelfile in tunnelfile.tunnelcontains.all %}
<a href="{% url "tunnelfile" rtunnelfile.tunnelpath %}">{{rtunnelfile.tunnelpath}}</a>
{% endfor %}
</td>
-
-
</tr>
{% endfor %}
</table>