diff options
author | Wookey <wookey@wookware.org> | 2011-07-11 02:10:22 +0100 |
---|---|---|
committer | Wookey <wookey@wookware.org> | 2011-07-11 02:10:22 +0100 |
commit | dc1327674c2676db02ccf525725019cd9115b699 (patch) | |
tree | 8b3a151a8512576ccfb6bb6578fe124c033c46c0 /templates/tunnelfiles.html | |
parent | c8ff8e3ef60c6eba0071e20664268c790c6a6aa6 (diff) | |
download | troggle-dc1327674c2676db02ccf525725019cd9115b699.tar.gz troggle-dc1327674c2676db02ccf525725019cd9115b699.tar.bz2 troggle-dc1327674c2676db02ccf525725019cd9115b699.zip |
remove all the DOS linefeeds
Diffstat (limited to 'templates/tunnelfiles.html')
-rw-r--r-- | templates/tunnelfiles.html | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/templates/tunnelfiles.html b/templates/tunnelfiles.html index 3d49e5d..caa3895 100644 --- a/templates/tunnelfiles.html +++ b/templates/tunnelfiles.html @@ -1,43 +1,43 @@ -{% 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>SurvexBlocks</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></td>
- <td>{{tunnelfile.filesize}}</td>
- <td>{{tunnelfile.npaths}}</td>
-
- <td>
- {% for survexscansfolder in tunnelfile.survexscansfolders.all %}
- <a href="{{survexscansfolder.get_absolute_url}}">{{survexscansfolder.walletname}}</a>
- {% 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 %}
- <a href="{% url tunnelfile rtunnelfile.tunnelpath %}">{{rtunnelfile.tunnelpath}}</a>
- {% endfor %}
- </td>
-
-
- </tr>
-{% endfor %}
-</table>
-
+{% 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>SurvexBlocks</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></td> + <td>{{tunnelfile.filesize}}</td> + <td>{{tunnelfile.npaths}}</td> + + <td> + {% for survexscansfolder in tunnelfile.survexscansfolders.all %} + <a href="{{survexscansfolder.get_absolute_url}}">{{survexscansfolder.walletname}}</a> + {% 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 %} + <a href="{% url tunnelfile rtunnelfile.tunnelpath %}">{{rtunnelfile.tunnelpath}}</a> + {% endfor %} + </td> + + + </tr> +{% endfor %} +</table> + {% endblock %}
\ No newline at end of file |