2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
troggle/templates/dataissues.html

23 lines
520 B
HTML
Raw Normal View History

2021-04-11 20:00:09 +01:00
{% 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 %}