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