akkounts/app/views/settings/_lightning.html.erb

28 lines
913 B
Plaintext

<%= form_for @user, url: setting_path(:lightning), html: { :method => :put } do |f| %>
<section>
<h3>Notifications</h3>
<ul role="list">
<%= render FormElements::FieldsetComponent.new(
positioning: :horizontal,
title: "Sats received",
description: "Notify me when sats are sent to my Lightning Address"
) do %>
<% f.fields_for :preferences do |p| %>
<% p.fields_for :lightning do |l| %>
<%= l.select :notify_sats_received, options_for_select([
["off", "off"],
["Chat (Jabber)", "xmpp"],
["E-Mail", "email"]
], selected: @user.preferences.dig('lightning', 'notify_sats_received')) %>
<% end %>
<% end %>
<% end %>
</ul>
</section>
<section>
<p class="pt-6 border-t border-gray-200 text-right">
<%= f.submit 'Save', class: "btn-md btn-blue w-full md:w-auto" %>
</p>
</section>
<% end %>