Browse Source

Fix couleurs du texte pour l'état 'actif'

generate_traduction_server_side
Hugo LEVY-FALK 7 years ago
committed by Alexandre Iooss
parent
commit
ef324c8807
  1. 4
      users/templates/users/profil.html

4
users/templates/users/profil.html

@ -211,9 +211,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% endif %}
<th>{% trans "State" %}</th>
{% if users.state == 0 %}
<td><i class="text-warning">{% trans "Active" %}</i></td>
<td><i class="text-success">{% trans "Active" %}</i></td>
{% elif users.state == 1 %}
<td><i class="text-success">{% trans "Disabled" %}</i></td>
<td><i class="text-warning">{% trans "Disabled" %}</i></td>
{% elif users.state == 2 %}
<td><i class="text-danger">{% trans "Archived" %}</i></td>
{% elif users.state == 3 %}

Loading…
Cancel
Save