{% 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.The URL links to the offending objects are enabled on only some types of fault as yet.
<p>
See the 
<a href="/handbook/computing/todo-data.html">Data Management To Do list</a> as well as these import/parsing issues.

<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>

<table>
<tr><th>Parser</th><th>Issue</th></tr>
{% for di  in didict %}
    {% ifchanged di.parser %}<!-- this combination of ifchnaged + cycle is a Django template idiom -->
        <tr {% cycle 'LightGoldenRodYellow' 'palegreen' 'lightcyan'  'gainsboro' 'paleturquoise' as mycolor %}>
    {% else %}
        <tr>
    {% endifchanged %}
    <td bgcolor={{mycolor}}>{{di.parser}}</td>
    <td bgcolor={{mycolor}} style="text-align:left"><a href="{{di.url}}">{{di.message}}</a></td>
    </tr>
{% endfor %}
</font>
</table>


{% endblock %}