From ea68fd622cb1e1e0077f952ac35814a59420f52c Mon Sep 17 00:00:00 2001 From: Fredrik Jonsson <frjo@xdeb.org> Date: Thu, 12 May 2022 09:55:20 +0200 Subject: [PATCH] Adjust the disabled Disable 2FA button. --- hypha/apply/users/templates/wagtailusers/users/edit.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hypha/apply/users/templates/wagtailusers/users/edit.html b/hypha/apply/users/templates/wagtailusers/users/edit.html index 6de2d3c9c..4dc246579 100644 --- a/hypha/apply/users/templates/wagtailusers/users/edit.html +++ b/hypha/apply/users/templates/wagtailusers/users/edit.html @@ -50,7 +50,11 @@ {% endif %} <!-- Add a custom button to user account edit form --> {% user_2fa_enabled as is_2fa_enabled %} - <a href="{% if is_2fa_enabled %}{% url 'users:two_factor_reset' user.pk %}{% else %}javascript:void(0){% endif %}" class="button {% if not is_2fa_enabled %}disabled{% endif %}" {% if not is_2fa_enabled %} title="{% blocktranslate %} {{ user }}'s 2FA security has been disabled {% endblocktranslate %}" {% endif %}>{% trans "Disable 2FA" %}</a> + {% if is_2fa_enabled %} + <a href="{% url 'users:two_factor_reset' user.pk %}" class="button">{% trans "Disable 2FA" %}</a> + {% else %} + <button type="button" title="{% trans "This account do not have 2FA enabled." %}" class="button" disabled>{% trans "Disable 2FA" %}</button> + {% endif %} </li> </ul> </section> -- GitLab