Initial commit
Cette révision appartient à :
révision
793bb6a488
182 fichiers modifiés avec 17153 ajouts et 0 suppressions
24
templates/aemo/utilisateur_journal.html
Fichier normal
24
templates/aemo/utilisateur_journal.html
Fichier normal
|
|
@ -0,0 +1,24 @@
|
|||
{% 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 %}
|
||||
Chargement…
Ajouter une table
Ajouter un lien
Référencer dans un nouveau ticket