Sha256: 824d28b251bcc0f2ac33552fa0a37e19d5efaa6540ead8941c3657ff9d6eb394
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 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> <%= f.field_container :option_type_ids, class: ['form-group'] do %> <%= f.label :option_type_ids, Spree.t(:option_types) %> <%= f.select :option_type_ids, Spree::OptionType.all.map { |ot| [ot.presentation, ot.id] }, {}, { multiple: true, class: "select2" } %> <% end %> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_backend-3.0.0.rc1 | app/views/spree/admin/prototypes/_form.html.erb |