summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html1
-rw-r--r--templates/dataissues.html23
2 files changed, 24 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
index 2e7e536..101d1ef 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -39,6 +39,7 @@
<a href="/1623/204/204.html">204 (Steinbrucken)</a> |
<br>
+ <a href="{% url "dataissues" %}">Data Issues</a> |
<a href="/handbook/computing/onlinesystems.html">handbook</a> |
<a href="/handbook/computing/todo-data.html">tasks to do </a> |
<a id="cavesLink" href="{% url "caveindex" %}">caves</a> |
diff --git a/templates/dataissues.html b/templates/dataissues.html
new file mode 100644
index 0000000..f3b9543
--- /dev/null
+++ b/templates/dataissues.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% block title %}Expo issues on data import{% endblock %}
+
+{% block content %}
+
+<h1>Loading data from files: Issues arising that need attention</h1>
+
+<p>
+This is work in progress (April 2021).
+
+<table>
+<tr><th>Parser</th><th>Issue</th><th>Import Date</th></tr>
+{% for di in didict %}
+<tr>
+ <td style="text-align:center">{{di.parser}}</td>
+ <td style="text-align:left">{{di.message}}</td>
+ <td style="text-align:center" width=25%>{{di.date}}</td>
+</tr>
+{% endfor %}
+</table>
+
+
+{% endblock %} \ No newline at end of file