added checks if user is activated in person overview
All checks were successful
Test Django / Test migration (push) Successful in 42s

Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
This commit is contained in:
Jochen Mehlich 2023-12-20 18:30:51 +01:00
parent e9ccf8131a
commit 58b43c93bd
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
{% load bootstrap5 %}
{% bootstrap_css %}
{% bootstrap_javascript %}
{% load static %}
<!DOCTYPE html>
<html lang="de">
<head>

View File

@ -17,7 +17,7 @@
<tr>
<td>{{ person.name }}</td>
<td>{{ person.description }}</td>
<td>{{ person.isActive}}</td>
<td>{% if person.isActive %} <i class="fa-solid fa-check"></i> {% else %} <i class="fa-solid fa-minus"></i> {% endif %}</td>
</tr>
{% endfor %}
</tbody>