diff options
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 /> |