diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-12 18:10:07 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-12 18:10:07 +0100 |
commit | 269b8840add3ee061ae7db2e148fe119f1c399db (patch) | |
tree | fd74a9c4687da67b372cac7b59552e782d237240 /templates/statistics.html | |
parent | b9a223c0490e8e582cdf44d7f95412d10bfd121c (diff) | |
download | troggle-269b8840add3ee061ae7db2e148fe119f1c399db.tar.gz troggle-269b8840add3ee061ae7db2e148fe119f1c399db.tar.bz2 troggle-269b8840add3ee061ae7db2e148fe119f1c399db.zip |
import fixes & statistics table
Diffstat (limited to 'templates/statistics.html')
-rw-r--r-- | templates/statistics.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/statistics.html b/templates/statistics.html index 63c1dfc..0cbe115 100644 --- a/templates/statistics.html +++ b/templates/statistics.html @@ -10,18 +10,19 @@ <p>{{ expoCount }} expeditions: {{ personCount }} people have contributed {{ caveCount }} caves and {{ logbookEntryCount }} logbook entries. <p>Number of survey legs: {{nsurvexlegs}}<br /> -Total length: {{totalsurvexlength|stringformat:".3f"}} m on importing survex files.<br /> -Total length: {{addupsurvexlength|stringformat:".3f"}} m adding up all the years below.</p> +Total length: {{totalsurvexlength|stringformat:".1f"}} km added-up on importing survex files.<br /> +Total length: {{addupsurvexlength|stringformat:".1f"}} km adding up all the years below.</p> +<p>These are raw tape lengths which include pitches, splays and surface-surveys. <table> -<tr><th>Year</th><th>Surveys</th><th>Survey Legs</th><th>Total length<br>(km)</th></tr> +<tr><th>Year</th><th>Survex<br>Surveys</th><th>Survey Legs</th><th>Total length<br>(m)</th></tr> {% for legs in legsbyexpo %} <tr> <td>{{legs.0.year}}</td> <td style="text-align:right">{{legs.0.survexblock_set.all|length}}</td> <td style="text-align:right">{{legs.1.nsurvexlegs|rjust:"10"}}</td> - <td style="text-align:right">{{legs.1.survexleglength|stringformat:".3f"}}</td> + <td style="text-align:right">{{legs.1.survexleglength}}</td> </tr> {% endfor %} </table> |