1 <% content_for :heading_class, "pb-0" %>
3 <% content_for :heading do %>
4 <h1><%= t ".title" %></h1>
5 <%= render :partial => "navigation" %>
8 <%= bootstrap_form_for current_user.notification_preferences, :method => :patch, :url => { :action => :update } do |f| %>
9 <div class="notification_preferences">
10 <% user_notification_events.each do |event_name| %>
12 <%= f.collection_check_boxes(
14 user_notification_mechanisms,
16 ->(mechanism) { t(".delivery_mechanisms.#{mechanism}") },
18 :text => t(".#{event_name}"),
19 :class => "fw-bold fs-6"
26 <%= f.primary t(".save") %>