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

35 lines
862 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).
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-12 01:00:47 +01:00
{% ifchanged di.parser %}
<tr {% cycle 'LightGoldenRodYellow' 'lightcyan' as mycolor %}>
{% else %}
<tr>
{% endifchanged %}
<td bgcolor={{mycolor}}>{{di.parser}}</td>
<td bgcolor={{mycolor}} style="text-align:left">{{di.message}}</td>
</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 %}