diff options
author | goatchurch <devnull@localhost> | 2009-08-05 11:58:36 +0100 |
---|---|---|
committer | goatchurch <devnull@localhost> | 2009-08-05 11:58:36 +0100 |
commit | c66b5e2dadcc7a4b501b479c30f183c3bf81af42 (patch) | |
tree | d0b2e18968ddff6d06c1aaecdace6f498ea1b99a /templates/experimental.html | |
parent | 907746289386da6b6342752a0628742905a59a69 (diff) | |
download | troggle-c66b5e2dadcc7a4b501b479c30f183c3bf81af42.tar.gz troggle-c66b5e2dadcc7a4b501b479c30f183c3bf81af42.tar.bz2 troggle-c66b5e2dadcc7a4b501b479c30f183c3bf81af42.zip |
[svn] latest hacking for various statistics
Diffstat (limited to 'templates/experimental.html')
-rw-r--r-- | templates/experimental.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/experimental.html b/templates/experimental.html new file mode 100644 index 0000000..d7dbd88 --- /dev/null +++ b/templates/experimental.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} +{% load wiki_markup %} +{% load link %} + +{% block title %}Experimental{% endblock %} + +{% block content %} + +<h1>Expo Experimental</h1> + +<p>Number of survey legs: {{nsurvexlegs}}, total length: {{totalsurvexlength}}</p> + +<table> +<tr><th>Year</th><th>Surveys</th><th>Survey Legs</th><th>Total length</th></tr> +{% for legs in legsbyexpo %} +<tr> + <td>{{legs.0.year}}</td> + <td>{{legs.0.survexblock_set.all|length}}</td> + <td>{{legs.1.nsurvexlegs}}</td> + <td>{{legs.1.survexleglength}}</td> +</tr> +{% endfor %} +</table> + +{% endblock %} + |