Sha256: dc7a40c6680fec67ce21f2d6e29e5bdc99713f626689b3889bf480ee04da69b0
Contents?: true
Size: 1.14 KB
Versions: 8
Compression:
Stored size: 1.14 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> <% 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> <% 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
8 entries across 8 versions & 1 rubygems