summaryrefslogtreecommitdiffstats
path: root/templates/experimental.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/experimental.html')
-rw-r--r--templates/experimental.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/templates/experimental.html b/templates/experimental.html
deleted file mode 100644
index 3e5d1f1..0000000
--- a/templates/experimental.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends "base.html" %}
-{% load wiki_markup %}
-{% load link %}
-
-{% block title %}Experimental{% endblock %}
-
-{% block content %}
-
-<h1>Expo Experimental</h1>
-
-<p>Number of survey legs: {{nsurvexlegs}}<br />
-Total length: {{totalsurvexlength}} m on importing survex files.<br />
-Total length: {{addupsurvexlength}} m adding up all the years below.</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 %}
-