summaryrefslogtreecommitdiffstats
path: root/templates/experimental.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/experimental.html')
-rw-r--r--templates/experimental.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/templates/experimental.html b/templates/experimental.html
deleted file mode 100644
index 17d96ef..0000000
--- a/templates/experimental.html
+++ /dev/null
@@ -1,26 +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}}, total length: {{totalsurvexlength|stringformat:".3f"}} km</p>
-
-<table>
-<tr><th>Year</th><th>Surveys</th><th>Survey Legs</th><th>Total length<br>(km)</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>
-</tr>
-{% endfor %}
-</table>
-
-{% endblock %}
-