diff --git a/hiboo/user/templates/user_list.html b/hiboo/user/templates/user_list.html index e68e8847271d20019389b11688d7804d5dc0b9d4..d941ce4214b76882f005ea5afc217fed357f884b 100644 --- a/hiboo/user/templates/user_list.html +++ b/hiboo/user/templates/user_list.html @@ -12,6 +12,7 @@ <tr> <th>{% trans %}Username{% endtrans %}</th> <th>{% trans %}Created on{% endtrans %}</th> + <th>{% trans %}2 factor auth.{% endtrans %}</th> </tr> </thead> <tbody> @@ -19,6 +20,7 @@ <tr> <td><a href="{{ url_for("user.details", user_uuid=user.uuid) }}">{{ user.username }}</a></td> <td>{{ user.created_at.date() }}</td> + <td>{% if user.auths["totp"] %}OUI{% else %}NON{% endif %}</td> </tr> {% endfor %} </tbody>