[Web] Fixed list of tfa keys

Signed-off-by: Kristian Feldsam <feldsam@gmail.com>
master
Kristian Feldsam 2021-10-23 15:23:56 +02:00
parent 254778fb20
commit ea6be8a9f8
1 changed files with 6 additions and 4 deletions

View File

@ -3,10 +3,12 @@
{% for key_info in tfa_data.additional %} {% for key_info in tfa_data.additional %}
<form style="display:inline;" method="post"> <form style="display:inline;" method="post">
<input type="hidden" name="unset_tfa_key" value="{{ key_info.id }}"> <input type="hidden" name="unset_tfa_key" value="{{ key_info.id }}">
<div style="padding:4px;margin:4px" class="label label-keys label-{% if tfa_id == key_info.id %}success{% else %}default{% endif %}"> <p>
{{ key_info.key_id }} <span style="padding:4px;margin:4px" class="label label-keys label-{% if tfa_id == key_info.id %}success{% else %}default{% endif %}">
<a href="#" style="font-weight:bold;color:white" onClick="$(this).closest('form').submit()">[{{ lang.admin.remove }}]</a> {{ key_info.key_id }}
</div> <a href="#" style="font-weight:bold;color:white" onClick="$(this).closest('form').submit()">[{{ lang.admin.remove }}]</a>
</span>
</p>
</form> </form>
{% endfor %} {% endfor %}
{% endif %} {% endif %}