<table class="table table-striped dataTable-table">
<thead class="thead-light">
<tr>
<th class="text-uppercase text-dark text-xxs font-weight-bold opacity-7 px-1 col-3">
Date
</th>
<th class="text-uppercase text-dark text-xxs font-weight-bold opacity-7 px-1 col-3">
Utilisateur
</th>
<th class="text-uppercase text-dark text-xxs font-weight-bold opacity-7 px-1 col-6">
Statut
</th>
</tr>
</thead>
<tbody>
{% for log in logHistory %}
<tr>
<td class="text-sm text-left">
{{ log['date'] }}
</td>
<td class="text-sm text-left">
{{ log['username'] }}
</td>
<td class="text-sm text-left">
{{ log['currentStatus'] }}
</td>
</tr>
{% endfor %}
</tbody>
</table>