forked from supportpal/operator-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatatables.twig
34 lines (33 loc) · 936 Bytes
/
datatables.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<table id="{{ id }}" class="{{ class }}" style="width: 100%">
<colgroup>
{% for column in columns %}
<col class="con{{ loop.index }}" />
{% endfor %}
</colgroup>
<thead>
<tr>
{% for i, c in columns %}
<th align="center" valign="middle" class="head{{ i }}">{{ c|raw }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for d in data %}
<tr>
{% for dd in d %}
<td>{{ dd }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
<tfoot id="gridFooter">
<tr class="sp-hidden">
{% for column in columns %}
<td></td>
{% endfor %}
</tr>
</tfoot>
</table>
{% if not noScript %}
{% include 'datatable::javascript' with { 'id': id, 'options': options, 'callbacks': callbacks } %}
{% endif %}