forked from expo/troggle
data issues much easier to read
This commit is contained in:
@@ -7,16 +7,28 @@
|
||||
|
||||
<p>
|
||||
This is work in progress (April 2021).
|
||||
<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><th>Import Date</th></tr>
|
||||
<tr><th>Parser</th><th>Issue</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>
|
||||
{% 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>
|
||||
{% endfor %}
|
||||
</font>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user