- Truncate Geoip table and add other category [SME: 13121] - Cope with blank data in action1 [SME: 13121]
22 lines
540 B
XML
22 lines
540 B
XML
<div class="${classname}">
|
|
<h2>${title}</h2>
|
|
<tal:block condition="threshold != 0">
|
|
<span class='greyed-out'>${threshold}</span>
|
|
</tal:block>
|
|
<tal:block condition="threshold == 0">
|
|
<br>
|
|
</tal:block>
|
|
<table class="bordercollapse">
|
|
<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> |