Files
fizzy/app/views/account/settings/show.html.erb
T
2025-11-02 13:11:41 +01:00

15 lines
460 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", account: @account %>
</section>