diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-11 20:00:09 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-11 20:00:09 +0100 |
commit | bc9b4f508b9b531500bac60ed7c7f8f3766b27f0 (patch) | |
tree | f8aa8e7db9493c1192b9f1b503a42a6ef6ec6044 /templates/dataissues.html | |
parent | 7f5ac93cc6b8875d809438debca14ac827a51f1a (diff) | |
download | troggle-bc9b4f508b9b531500bac60ed7c7f8f3766b27f0.tar.gz troggle-bc9b4f508b9b531500bac60ed7c7f8f3766b27f0.tar.bz2 troggle-bc9b4f508b9b531500bac60ed7c7f8f3766b27f0.zip |
Public Import Errors webpage
Diffstat (limited to 'templates/dataissues.html')
-rw-r--r-- | templates/dataissues.html | 23 |
1 files changed, 23 insertions, 0 deletions
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 |