diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-08-05 12:57:38 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-08-05 12:57:38 +0300 |
commit | 33026ca9eacd1038b92c1a5c02e9d80ae5de06ab (patch) | |
tree | a53227feff950f220a765cabeaedc957a970fedf /templates/survexfilewild.html | |
parent | 7df2d4474863ea98210d8675d0640c9eca400e85 (diff) | |
download | troggle-33026ca9eacd1038b92c1a5c02e9d80ae5de06ab.tar.gz troggle-33026ca9eacd1038b92c1a5c02e9d80ae5de06ab.tar.bz2 troggle-33026ca9eacd1038b92c1a5c02e9d80ae5de06ab.zip |
who to blame
Diffstat (limited to 'templates/survexfilewild.html')
-rw-r--r-- | templates/survexfilewild.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/survexfilewild.html b/templates/survexfilewild.html index 36cfbc3..ed90f7f 100644 --- a/templates/survexfilewild.html +++ b/templates/survexfilewild.html @@ -11,14 +11,15 @@ i.e. they have no *REF line which refers to the wallet holding the raw data for <p>WORK IN PROGRESS <table> -<tr><th>Survex Blocks</th><th>date</th><th>survex file</th><th>surveyed length</th></tr> +<tr><th>survex block with no *ref</th><th>date</th><th>parent block</th><th>within survex file</th><th>surveyed length</th><th>team</th></tr> {% for sb in svxwild %} <tr> <td style="text-align:center"> {{ sb }} </td> <td style="text-align:center"> {{sb.date }} </td> + <td style="text-align:center"> {{sb.parent }} </td> <td style="text-align:left"> <a href="{% url "svx" sb.survexfile.path %}">{{sb.survexfile.path}}</a> </td> <td style="text-align:center"> {{sb.legslength|floatformat:"1g" }}m </td> -</tr> + <td style="text-align:center"> {{sb.team|truncatechars:50 }} </td></tr> {% endfor %} </table> <br /> |