Sha256: adfede619b1fc18a87c715093fc5891754c212dd7b3fd046b86292bbd4e57bab
Contents?: true
Size: 1.16 KB
Versions: 16
Compression:
Stored size: 1.16 KB
Contents
<%= f.field_container :name do %> <%= f.label :name, t(:name) %><br /> <%= f.text_field :name %> <%= f.error_message_on :name %> <% end %> <h3><%= t(:properties) %></h3> <ul class='checkbox-list' id='properties' data-hook> <% Spree::Property.sorted.each do |property| %> <% selected = if @prototype.new_record? (params[:property] and params[:property][:id] and params[:property][:id].include?(property.id.to_s)) else @prototype.properties.include?(property) end %> <li> <label> <%= check_box_tag 'property[id][]', "#{property.id}", selected %> <%= property.name %> </label> </li> <% end %> </ul> <hr /> <h3><%= t(:option_types) %></h3> <ul class="checkbox-list" id="option_types" data-hook> <% Spree::OptionType.all.each do |option_type| %> <% selected = if @prototype.new_record? (params[:option_type] and params[:option_type][:id] and params[:option_type][:id].include?(option_type.id.to_s)) else @prototype.option_types.include?(option_type) end %> <li> <label> <%= check_box_tag 'option_type[id][]', "#{option_type.id}", selected %> <%= option_type.name %> </label> </li> <% end %> </ul> <hr />
Version data entries
16 entries across 16 versions & 1 rubygems