diff --git a/apps/users/templates/users/user_detail.html b/apps/users/templates/users/user_detail.html
index d062a0a3c..66bfa61e0 100644
--- a/apps/users/templates/users/user_detail.html
+++ b/apps/users/templates/users/user_detail.html
@@ -88,7 +88,7 @@
{{ user_object.get_role_display }} |
- {% trans 'Enable OTP' %}: |
+ {% trans 'MFA certification' %}: |
{% if user_object.otp_force_enabled %}
{% trans 'Force enabled' %}
@@ -148,7 +148,7 @@
|
- {% trans 'Force enabled OTP' %}: |
+ {% trans 'Force enabled MFA' %}: |
@@ -288,7 +288,7 @@ $(document).ready(function() {
})
.on('click', '#force_enable_otp', function() {
{% if request.user == user_object %}
- toastr.error("{% trans 'Goto profile page enable otp' %}");
+ toastr.error("{% trans 'Goto profile page enable MFA' %}");
return
{% endif %}
diff --git a/apps/users/templates/users/user_profile.html b/apps/users/templates/users/user_profile.html
index 6cda70eb9..3efc193c9 100644
--- a/apps/users/templates/users/user_profile.html
+++ b/apps/users/templates/users/user_profile.html
@@ -63,18 +63,7 @@
{% trans 'Active' %} |
{{ user.is_active|yesno:"Yes,No,Unkown" }} |
|
-
- {% trans 'OTP' %} |
-
- {% if user.otp_force_enabled %}
- {% trans 'Force enable' %}
- {% elif user.otp_enabled%}
- {% trans 'Enable' %}
- {% else %}
- {% trans 'Disable' %}
- {% endif %}
- |
-
+
{% trans 'Public key' %} |
@@ -92,6 +81,18 @@
|
+
+ {% trans 'MFA certification' %} |
+
+ {% if user.otp_force_enabled %}
+ {% trans 'Force enable' %}
+ {% elif user.otp_enabled%}
+ {% trans 'Enable' %}
+ {% else %}
+ {% trans 'Disable' %}
+ {% endif %}
+ |
+
{% trans 'Date joined' %} |
{{ user.date_joined|date:"Y-m-d H:i:s" }} |
@@ -145,7 +146,7 @@
- {% trans 'Update otp' %}: |
+ {% trans 'Update MFA settings' %}: |
|