Files
fizzy/app/views/account/settings/show.html.erb
T
2025-10-31 16:13:12 -05:00

15 lines
474 B
Plaintext

<% @page_title = "Account Settings" %>
<% content_for :header do %>
<h1 class="header__title"><%= @page_title %></h1>
<% end %>
<section class="settings margin-block-start-half">
<div class="settings__panel settings__panel--users panel shadow center">
<%= render "account/settings/name", account: @account %>
<%= render "account/settings/users", users: @users %>
</div>
<%= render "account/settings/entropy_configuration", account: @account %>
</section>