Files
fizzy/app/views/notifications/settings/show.html.erb
T

20 lines
761 B
Plaintext

<% @page_title = "Notification Settings" %>
<% content_for :header do %>
<h1 class="header__title" data-bridge--title-target="header"><%= @page_title %></h1>
<% end %>
<section class="settings margin-block-start-half">
<div class="settings__panel settings__panel--users panel shadow center">
<h2 class="txt-medium txt-uppercase divider">Boards</h2>
<div class="settings__user-list flex flex-column gap-half">
<%= render partial: "notifications/settings/board", collection: @boards, locals: { user: Current.user } %>
</div>
</div>
<div class="settings__panel panel shadow center">
<%= render "notifications/settings/push_notifications" %>
<%= render "notifications/settings/email", settings: @settings %>
</div>
</section>