<table class="table table-striped table-hover table-sm">
<thead style="background: #e2ad38;color: #fff">
<tr>
<th style="padding: 10px">N°</th>
<th style="padding: 10px">Liste des documents</th>
<th style="padding: 10px" width="260"> </th>
</tr>
</thead>
<tbody>
{% for index, documentation in documentations %}
<tr>
<td style="padding: 10px">{{ loop.index }}</td>
<td style="padding: 10px" title="{{ documentation.name }}">{{ documentation.name|u.truncate(80, '...') }}</td>
<td style="padding: 10px">
<a href="#" class="btn btn-success btn-sm">Visualiser</a>
<a href="#" class="btn btn-sm" style="background: #e2ad38;color: #fff">Télécharger</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>