summaryrefslogtreecommitdiffstats
path: root/templates/tunnelfiles.html
diff options
context:
space:
mode:
authorgoatchurch <goatchurch@ubuntu.clocksoft.dom>2009-09-11 23:56:47 +0100
committergoatchurch <goatchurch@ubuntu.clocksoft.dom>2009-09-11 23:56:47 +0100
commit12cf3a6d534e5038b5d78b11a03cef2b81f5f852 (patch)
tree30d6f4e0891ae28750ca9dd97c74432c17683384 /templates/tunnelfiles.html
parentb80168c099b5805dfc9c1fee576d00cabc31e2d2 (diff)
downloadtroggle-12cf3a6d534e5038b5d78b11a03cef2b81f5f852.tar.gz
troggle-12cf3a6d534e5038b5d78b11a03cef2b81f5f852.tar.bz2
troggle-12cf3a6d534e5038b5d78b11a03cef2b81f5f852.zip
tunnelfiles scheme added
Diffstat (limited to 'templates/tunnelfiles.html')
-rw-r--r--templates/tunnelfiles.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/tunnelfiles.html b/templates/tunnelfiles.html
new file mode 100644
index 0000000..34afc28
--- /dev/null
+++ b/templates/tunnelfiles.html
@@ -0,0 +1,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 %} \ No newline at end of file