Files
fizzy/app/views/notifications/settings/_email.html.erb
T
Jorge Manrubia fb95c8aa92 Copy
2025-08-28 12:02:12 +02:00

10 lines
617 B
Plaintext

<section class="panel unpad borderless center flex flex-column gap-half margin-block-end">
<h2 class="txt-medium txt-uppercase divider">Email</h2>
<%= form_with model: settings, url: notifications_settings_path, method: :patch, local: true, data: { controller: "form" } do |form| %>
<div class="margin-block">
<%= form.label :bundle_email_frequency, "Receive an email with unread notifications:" %>
<%= form.select :bundle_email_frequency, bundle_email_frequency_options_for(settings), {}, class: "input input--select", data: { action: "change->form#submit" } %>
</div>
<% end %>
</section>