forked from expo/troggle
Public Import Errors webpage
This commit is contained in:
23
templates/dataissues.html
Normal file
23
templates/dataissues.html
Normal file
@@ -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 %}
|
||||
Reference in New Issue
Block a user