aemo_fr/templates/aemo/utilisateur_journal.html

25 lines
818 B
HTML
Raw Normal View History

2024-06-03 16:49:01 +02:00
{% extends "base.html" %}
{% block content %}
<div class="row border-bottom mb-3">
<div class="col"><p class="lead">Accès aux familles par {{ utilisateur }}</p></div>
</div>
<table id="user_table" class="table table-sm table-hover sortable">
<thead class="table-light">
<tr>
<th>Date/heure</th>
<th>Famille</th>
<th>Accès ordinaire</th>
</tr>
</thead>
<tbody>
{% for line in object_list %}
<tr>
<td class="m-0 p-1">{{ line.quand|date:'d.m.Y H:i' }}</td>
<td class="m-0 p-1">{{ line.famille }}</td>
<td class="m-0 p-1">{{ line.ordinaire|boolean_icon }}</td>
{% endfor %}
</tbody>
</table>
{% endblock %}