Add organization status

This commit is contained in:
Charles 2025-09-04 10:18:40 +02:00
parent 5e52386233
commit 633c255598
1 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,7 @@
<th>Nom</th>
<th>Email</th>
<th>Visualiser</th>
<th>Status</th>
</tr>
</thead>
<tbody>
@ -38,6 +39,13 @@
</td>
<td>{{ organization.name }}</td>
<td>{{ organization.email }}</td>
<td>
{% if organization.active %}
<span class="badge bg-success">Active</span>
{% else %}
<span class="badge bg-danger">Inactive</span>
{% endif %}
</td>
<td>
<a href="{{ path('organization_show', {'id': organization.id}) }}"
class="p-3 align-middle color-primary">