Sha256: 101103462957f0822c1d07d9de28779cac4d912b2f88202990987d2455a941f0
Contents?: true
Size: 1.14 KB
Versions: 22
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'> <% 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='properties'> <% 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
22 entries across 22 versions & 3 rubygems