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