summaryrefslogtreecommitdiffstats
path: root/templates/dataissues.html
blob: 97c415e9f300e297ded728937cf03a12e403f16c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% 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 %}