Sha256: 5545cac307154f849c21c68b0bf7188d154980c3e2aab35dd001ac33179ff7dc
Contents?: true
Size: 1.39 KB
Versions: 8
Compression:
Stored size: 1.39 KB
Contents
<div data-hook="admin_prototype_form_fields" class="row"> <div class="col-3"> <%= f.field_container :name do %> <%= f.label :name, class: 'required' %><br /> <%= f.text_field :name, class: 'fullwidth' %> <%= f.error_message_on :name %> <% end %> </div> <div class="col-3"> <div id='properties' data-hook> <%= f.field_container :property_ids do %> <%= f.label :property_ids, plural_resource_name(Spree::Property) %><br> <%= f.select :property_ids, Spree::Property.all.map { |p| ["#{p.presentation} (#{p.name})", p.id] }, {}, { multiple: true, class: "select2 fullwidth" } %> <% end %> </div> </div> <div class="col-3"> <div id="option_types" data-hook> <%= f.field_container :option_type_ids do %> <%= f.label :option_type_ids, plural_resource_name(Spree::OptionType) %><br> <%= f.select :option_type_ids, Spree::OptionType.all.map { |ot| ["#{ot.presentation} (#{ot.name})", ot.id] }, {}, { multiple: true, class: "select2 fullwidth" } %> <% end %> </div> </div> <div class="col-3"> <div id='taxons' data-hook> <%= f.field_container :taxon_ids do %> <%= f.label :taxon_ids, plural_resource_name(Spree::Taxon) %><br> <%= f.select :taxon_ids, Spree::Taxon.all.map { |t| [t.name, t.id] }, {}, { multiple: true, class: "select2 fullwidth" } %> <% end %> </div> </div> </div>
Version data entries
8 entries across 8 versions & 1 rubygems