added checks if user is activated in person overview
All checks were successful
Test Django / Test migration (push) Successful in 42s
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:
parent
e9ccf8131a
commit
58b43c93bd
@ -1,6 +1,7 @@
|
||||
{% load bootstrap5 %}
|
||||
{% bootstrap_css %}
|
||||
{% bootstrap_javascript %}
|
||||
{% load static %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user