blob: 8595a7281f292acd8cf6185d49829433073efa34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<table>
<caption><span>{{ tabTitle }}</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">{{ colTitle }}</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
{% for item in list %}
<tr class="{{ rowColor(loop.index0) }}">{{ createTabRow(item, dir)|raw }}</tr>
{% end -%}
</tbody>
</table>
|