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