22 lines
577 B
XML
22 lines
577 B
XML
<div class="${classname}">
|
|
<h2>${title}</h2>
|
|
<tal:block condition="threshold != 0">
|
|
<span class='greyed-out'>Display threshold set to ${threshold}%</span>
|
|
</tal:block>
|
|
<tal:block condition="threshold == 0">
|
|
<br>
|
|
</tal:block>
|
|
<table style="border-collapse:collapse;">
|
|
<thead>
|
|
<tr>
|
|
<th tal:repeat="header column_headers">${header}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr tal:repeat="item array_2d">
|
|
<td tal:repeat="cell item">${cell}</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div> |