This PR adds an MFA row to the individual Super Admin user page and shows the current state as Enabled or Disabled with a compact status badge. Fixes #13723 ## Screens <img width="1370" height="1043" alt="image" src="https://github.com/user-attachments/assets/b9fee284-43b7-4bbb-9f60-b71ab34b96b7" /> <img width="1370" height="1043" alt="image" src="https://github.com/user-attachments/assets/23c5e6d3-24b8-40d2-9134-0c2b1dc98b41" />
70 lines
2.3 KiB
Plaintext
70 lines
2.3 KiB
Plaintext
<%#
|
|
# Show
|
|
|
|
This view is the template for the show page.
|
|
It renders the attributes of a resource,
|
|
as well as a link to its edit page.
|
|
|
|
## Local variables:
|
|
|
|
- `page`:
|
|
An instance of [Administrate::Page::Show][1].
|
|
Contains methods for accessing the resource to be displayed on the page,
|
|
as well as helpers for describing how each attribute of the resource
|
|
should be displayed.
|
|
|
|
[1]: http://www.rubydoc.info/gems/administrate/Administrate/Page/Show
|
|
%>
|
|
|
|
<% content_for(:title) { t("administrate.actions.show_resource", name: page.page_title) } %>
|
|
|
|
<header class="main-content__header" role="banner">
|
|
<h1 class="main-content__page-title">
|
|
<%= content_for(:title) %>
|
|
</h1>
|
|
|
|
<div>
|
|
<%= link_to(
|
|
t("administrate.actions.edit"),
|
|
[:edit, namespace, page.resource.becomes(User)],
|
|
class: "button",
|
|
) if authorized_action? page.resource, :edit %>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="main-content__body">
|
|
<dl>
|
|
<% page.attributes.each do |title, attributes| %>
|
|
<fieldset class="<%= "field-unit--nested" if title.present? %>">
|
|
<% if title.present? %>
|
|
<legend><%= t "helpers.label.#{page.resource_name}.#{title}", default: title %></legend>
|
|
<% end %>
|
|
|
|
<% attributes.each do |attribute| %>
|
|
<dt class="attribute-label" id="<%= attribute.name %>">
|
|
<%= t(
|
|
"helpers.label.#{resource_name}.#{attribute.name}",
|
|
default: page.resource.class.human_attribute_name(attribute.name),
|
|
) %>
|
|
</dt>
|
|
|
|
<dd class="attribute-data attribute-data--<%=attribute.html_class%>"
|
|
><%= render_field attribute, page: page %></dd>
|
|
<% end %>
|
|
</fieldset>
|
|
<% end %>
|
|
|
|
<dt class="attribute-label" id="mfa_enabled">MFA</dt>
|
|
<dd class="attribute-data attribute-data--string">
|
|
<% mfa_enabled = page.resource.mfa_enabled? %>
|
|
<span class="<%= mfa_enabled ? 'bg-green-100/70 text-green-800' : 'bg-slate-100 text-slate-700' %> inline-flex items-center px-2 h-4 leading-4 rounded-xl text-xxs font-medium">
|
|
<%= mfa_enabled ? 'Enabled' : 'Disabled' %>
|
|
</span>
|
|
</dd>
|
|
</dl>
|
|
</section>
|
|
|
|
<%= render 'super_admin/shared/account_user_form', page: page, namespace: namespace, resource_type: 'user' %>
|
|
|
|
<%= render partial: "impersonate", locals: {page: page} %>
|