summaryrefslogtreecommitdiffstats
path: root/templates/survexscansfolders.html
diff options
context:
space:
mode:
authorgoatchurch <goatchurch@ubuntu.clocksoft.dom>2009-09-14 22:52:46 +0100
committergoatchurch <goatchurch@ubuntu.clocksoft.dom>2009-09-14 22:52:46 +0100
commit24d90bae752dfc5d51cf038d3a5d4b3858765e9f (patch)
tree4b183cf44661379f230202b37b205ae77f21f0ba /templates/survexscansfolders.html
parent517d29163669de836f631fa17855a0b5cd914660 (diff)
downloadtroggle-24d90bae752dfc5d51cf038d3a5d4b3858765e9f.tar.gz
troggle-24d90bae752dfc5d51cf038d3a5d4b3858765e9f.tar.bz2
troggle-24d90bae752dfc5d51cf038d3a5d4b3858765e9f.zip
make 2008 logbook correctly parse
Diffstat (limited to 'templates/survexscansfolders.html')
-rw-r--r--templates/survexscansfolders.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/survexscansfolders.html b/templates/survexscansfolders.html
index 186c5f4..195b898 100644
--- a/templates/survexscansfolders.html
+++ b/templates/survexscansfolders.html
@@ -13,7 +13,11 @@
<tr>
<td><a href="{{survexscansfolder.get_absolute_url}}">{{survexscansfolder.walletname}}</a></td>
<td>{{survexscansfolder.survexscansingle_set.all|length}}</td>
- <td>{{survexscansfolder.survexblock_set.all|length}}</td>
+ <td>
+ {% for survexblock in survexscansfolder.survexblock_set.all %}
+ <a href="{% url svx survexblock.survexfile.path %}">{{survexblock}}</a>
+ {% endfor %}
+ </td>
</tr>
{% endfor %}
</table>