FEATURE [admin] add absence in user index admin

This commit is contained in:
Julie Lenaerts 2023-01-27 12:25:05 +01:00
parent 1c673db628
commit 50bb8f10cf
2 changed files with 18 additions and 9 deletions

View File

@ -11,6 +11,7 @@
{% block table_entities_thead_tr %}
<th>{{ 'Active'|trans }}</th>
<th>{{ 'absence.Is absent'|trans }}</th>
<th>{{ 'Username'|trans }}</th>
<th>{{ 'Datas'|trans }}</th>
<th>{{ 'Actions'|trans }}</th>
@ -26,6 +27,13 @@
<i class="fa fa-square-o"></i>
{% endif %}
</td>
<td>
{% if entity.isAbsent %}
<i class="fa fa-check-square-o"></i>
{% else %}
<i class="fa fa-square-o"></i>
{% endif %}
</td>
<td>
{#
{% if entity.civility is not null %}

View File

@ -594,3 +594,4 @@ absence:
You are marked as being absent: Vous êtes indiqué absent.
You are listed as absent, as of: Votre absence est indiqué à partir du
No absence listed: Aucune absence indiquée.
Is absent: Absent?