Files
fizzy/app/views/webhooks/form/_actions.html.erb
T
2025-09-23 18:00:13 +02:00

17 lines
608 B
Plaintext

<ul class="flex flex-column align-start gap-half margin-none unpad">
<%= form.collection_check_boxes \
:subscribed_actions,
webhook_action_options,
:first,
:last do |item| %>
<li class="list-style-none margin-none flex align-center gap">
<label class="switch toggler__visible-when-off flex-item-no-shrink txt-x-small">
<%= item.check_box(class: "switch__input") %>
<span class="switch__btn round"></span>
<span class="for-screen-reader"><%= item.text %></span>
</label>
<span><%= item.text %></span>
</li>
<% end %>
</ul>