summaryrefslogtreecommitdiffstats
path: root/templates/statistics.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/statistics.html')
-rw-r--r--templates/statistics.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/statistics.html b/templates/statistics.html
index 67a895d..9439fdc 100644
--- a/templates/statistics.html
+++ b/templates/statistics.html
@@ -12,17 +12,18 @@ Total length: {{addupsurvexlength|stringformat:".1f"}} km adding up the total fo
<p>These are uncorrected tape lengths which include pitches and duplicates but exclude splays or surface-surveys.
<p>
-This is work in progress (Feb.2023).
+This is work in progress (March 2023): the last column is floatng point numbers, the 3rd column appears to be strings..
<p>This includes ARGE and other surveys currently. It will be changed to only include lengths surveyed by valid Expo-attendees.
<table>
-<tr><th>Year</th><th>Survex<br>Survey<br>Blocks</th><th>Survex<br>Survey Legs</th><th>Total length<br>(m)</th></tr>
+<tr><th>Year</th><th>Survex<br>Survey<br>Blocks</th><th>Survex<br>Survey Legs</th><th>Total length<br>(m)</th><th>Total length<br>(m)</th></tr>
{% for legs in legsbyexpo %}
<tr>
<td style="text-align:center"><a href="{{ legs.0.get_absolute_url }}">{{legs.0}}</a></td>
<td style="text-align:center">{{legs.0.survexblock_set.all|length}}</td>
<td style="text-align:center">{{legs.1.nsurvexlegs|rjust:"10"}} </td>
<td style="text-align:right">{{legs.1.survexleglength}}</td>
+ <td style="text-align:right">{{legs.1.survexleglength|floatformat:0}}</td>
</tr>
{% endfor %}
</table>