diff options
author | goatchurch <goatchurch@ubuntu.clocksoft.dom> | 2009-09-13 17:27:46 +0100 |
---|---|---|
committer | goatchurch <goatchurch@ubuntu.clocksoft.dom> | 2009-09-13 17:27:46 +0100 |
commit | 7578b65573b3c49bab55deecd0198adce4ca84fa (patch) | |
tree | 7218d2f65c886bef55e3a4c561dd61866491eef2 /templates/tunnelfiles.html | |
parent | ced45c92f7db673968069bf3ba506a4f2259d224 (diff) | |
download | troggle-7578b65573b3c49bab55deecd0198adce4ca84fa.tar.gz troggle-7578b65573b3c49bab55deecd0198adce4ca84fa.tar.bz2 troggle-7578b65573b3c49bab55deecd0198adce4ca84fa.zip |
able to save sketches up from tunnel
Diffstat (limited to 'templates/tunnelfiles.html')
-rw-r--r-- | templates/tunnelfiles.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/tunnelfiles.html b/templates/tunnelfiles.html index 34afc28..8b80ade 100644 --- a/templates/tunnelfiles.html +++ b/templates/tunnelfiles.html @@ -8,11 +8,15 @@ <h3>All Tunnel files</h3>
<table>
-<tr><th>File</th><th>Font</th><th>Frame</th><th>SurvexBlocks</th><th>Size</th></tr>
+<tr><th>File</th><th>Font</th><th>Frame</th><th>SurvexBlocks</th><th>Size</th><th>Paths</td></tr>
{% for tunnelfile in tunnelfiles %}
<tr>
- <td>{{tunnelfile.tunnelpath}}</td>
+ <td><a href="{% url tunnelfile tunnelfile.tunnelpath %}">{{tunnelfile.tunnelpath}}</a></td>
<td>{{tunnelfile.bfontcolours}}</td>
+ <td></td>
+ <td></td>
+ <td>{{tunnelfile.filesize}}</td>
+ <td>{{tunnelfile.npaths}}</td>
</tr>
{% endfor %}
</table>
|