Sha256: 85071dbb5b199c9a5001a9a55380d839e11f6da70410fe69e1cb77f8b6721033
Contents?: true
Size: 1.46 KB
Versions: 6
Compression:
Stored size: 1.46 KB
Contents
<div data-hook="admin_prototype_form_fields" class="row"> <div class="alpha four columns"> <%= 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="four columns"> <div id='properties' data-hook> <%= f.field_container :property_ids do %> <%= f.label :property_ids, Spree::Property.model_name.human(count: :other) %><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="four columns"> <div id="option_types" data-hook> <%= f.field_container :option_type_ids do %> <%= f.label :option_type_ids, Spree::OptionType.model_name.human(count: :other) %><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="four columns omega"> <div id='taxons' data-hook> <%= f.field_container :taxon_ids do %> <%= f.label :taxon_ids, Spree::Taxon.model_name.human(count: :other) %><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
6 entries across 6 versions & 1 rubygems