blob: 2b23804968443a9035ccf1cb07241b86b9717845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<table class='table table-striped datatables'
id="{{window_id}}-docs-table">
{% for values in item.documents_list %}{% if not forloop.counter0 %}
<thead>
<tr>
{% for value in values %}<th class="text-center">{{value}}</th>{% endfor %}
</tr>
</thead>
{% else %}
<tr>
{% for value in values %}<td>{{value}}</td>{% endfor %}
</tr>
{% endif %}
{% endfor %}
</table>
|