mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
23 lines
520 B
HTML
23 lines
520 B
HTML
|
{% 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 %}
|