Sha256: 0280305da64aca72530397df4f64771f7ed2bc34fa889211f163ef89d65dbf64
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 KB
Contents
<div class="row column"> <%= form.select :users, options_from_collection_for_select(@users, :id, :text, proc { true }), { include_blank: false }, { class: "multiusers-select", multiple: true, data: { url: users_path } } %> </div> <div class="row column"> <%= form.select :note_takers, options_from_collection_for_select(@note_takers, :id, :text, proc { true }), { include_blank: false }, { class: "multiusers-select", multiple: true, data: { url: users_path } } %> </div> <div class="row column"> <div class="switch tiny switch-with-label restricted"> <%= form.label :restricted do %> <%= form.check_box :restricted, label: false, class: "switch-input" %> <span class="switch-paddle"></span> <span class="switch-label"><%= t("restricted", scope: "decidim.components.notify.settings.global") %></span> <% end %> </div> </div> <div class="row column"> <div class="switch tiny switch-with-label private"> <%= form.label :private do %> <%= form.check_box :private, label: false, class: "switch-input" %> <span class="switch-paddle"></span> <span class="switch-label"><%= t("private", scope: "decidim.components.notify.settings.global") %></span> <% end %> </div> </div>
Version data entries
3 entries across 3 versions & 1 rubygems