blob: e1b507b9ed2cefc42b98d4869df25d860a68a674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% if isTypeSummary %}
<table class="typeSummary">
{% else %}
<table>
{% endif %}
<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, contextRoot)|raw }}</tr>
{% end -%}
</tbody>
</table>
|