summaryrefslogtreecommitdiffstats
path: root/templates/experimental.html
blob: d7dbd88248e8da7045754dbab2cd298e089587d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 %}