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>
|
2022-07-31 16:58:46 +01:00
|
|
|
This is work in progress.The URL links to the offending objects are enabled on only some types of fault as yet.
|
2022-06-24 21:18:10 +01:00
|
|
|
<p>
|
|
|
|
See the
|
|
|
|
<a href="/handbook/computing/todo-data.html">Data Management To Do list</a> as well as these import/parsing issues.
|
|
|
|
|
2021-04-12 01:00:47 +01:00
|
|
|
<style>
|
|
|
|
tr { text-align:center;
|
|
|
|
font-family: Tahoma,'Trebuchet MS','Lucida Grande',Verdana, Arial, Helvetica, Sans-Serif;
|
|
|
|
font-size: 11pt;
|
|
|
|
line-height: 160%;
|
|
|
|
};
|
|
|
|
td { background : lightblue; }
|
|
|
|
</style>
|
2021-04-11 20:00:09 +01:00
|
|
|
|
|
|
|
<table>
|
2021-04-12 01:00:47 +01:00
|
|
|
<tr><th>Parser</th><th>Issue</th></tr>
|
2021-04-11 20:00:09 +01:00
|
|
|
{% for di in didict %}
|
2021-04-14 21:08:06 +01:00
|
|
|
{% ifchanged di.parser %}<!-- this combination of ifchnaged + cycle is a Django template idiom -->
|
|
|
|
<tr {% cycle 'LightGoldenRodYellow' 'palegreen' 'lightcyan' 'gainsboro' 'paleturquoise' as mycolor %}>
|
2021-04-12 01:00:47 +01:00
|
|
|
{% else %}
|
|
|
|
<tr>
|
|
|
|
{% endifchanged %}
|
|
|
|
<td bgcolor={{mycolor}}>{{di.parser}}</td>
|
2021-04-12 01:28:54 +01:00
|
|
|
<td bgcolor={{mycolor}} style="text-align:left"><a href="{{di.url}}">{{di.message}}</a></td>
|
2021-04-12 01:00:47 +01:00
|
|
|
</tr>
|
2021-04-11 20:00:09 +01:00
|
|
|
{% endfor %}
|
2021-04-12 01:00:47 +01:00
|
|
|
</font>
|
2021-04-11 20:00:09 +01:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|