Skip to content
Snippets Groups Projects
Verified Commit 11995b4d authored by ornanovitch's avatar ornanovitch
Browse files

PoC user_list

parent 4b246791
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment