Initial commit
This commit is contained in:
commit
793bb6a488
182 changed files with 17153 additions and 0 deletions
24
templates/aemo/utilisateur_journal.html
Normal file
24
templates/aemo/utilisateur_journal.html
Normal file
|
|
@ -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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue