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 | e4496e4cd8dd7d6ea809aa2142f2d7adcbeca213 (patch) | |
tree | c7603f32f60415e0b36bacbf2cc77faafd3ca432 /templates/experimental.html | |
parent | 60dcb82ef6ca4faf4b7e2e5cb2d407961af5ea3f (diff) | |
download | troggle-e4496e4cd8dd7d6ea809aa2142f2d7adcbeca213.tar.gz troggle-e4496e4cd8dd7d6ea809aa2142f2d7adcbeca213.tar.bz2 troggle-e4496e4cd8dd7d6ea809aa2142f2d7adcbeca213.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 %} + |