6fab121f51
* main: Remove explicit queue definition Fix attribute name Explicitly define incineration priority Fix incorrect recurring job config Add self-service account deletion (#2246) Document DELETE endpoint for removing card header image Document goldness endpoints for marking cards as golden Document closed and column fields in card API response
26 lines
896 B
Plaintext
26 lines
896 B
Plaintext
<% @page_title = "Account Settings" %>
|
|
|
|
<% content_for :header do %>
|
|
<h1 class="header__title" data-bridge--page-target="header">
|
|
<%= @page_title %>
|
|
<% unless Current.user.admin? %>
|
|
<div class="txt-normal font-weight-normal">Only admins can change these settings</div>
|
|
<% end %>
|
|
</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>
|
|
|
|
<div class="settings__panel settings__panel--entropy panel shadow center">
|
|
<%= render "account/settings/entropy", account: @account %>
|
|
<%= render "account/settings/export" %>
|
|
<%= render "account/settings/cancellation" %>
|
|
</div>
|
|
</section>
|
|
|
|
<%= render "account/settings/subscription_panel" if Fizzy.saas? %>
|