summaryrefslogtreecommitdiffstats
path: root/templates/tunnelfiles.html
blob: 34afc282054f04df0722f37d0c2c04af791c6c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% load wiki_markup %}
{% load survex_markup %}

{% block title %}Tunnel files{% endblock %}

{% block content %}

<h3>All Tunnel files</h3>
<table>
<tr><th>File</th><th>Font</th><th>Frame</th><th>SurvexBlocks</th><th>Size</th></tr>
{% for tunnelfile in tunnelfiles %}
  <tr>
    <td>{{tunnelfile.tunnelpath}}</td>
    <td>{{tunnelfile.bfontcolours}}</td>
  </tr>
{% endfor %}
</table>

{% endblock %}