Sha256: 29c99ad92489de4730702b31c93675320acac5d0c119e8d046282724f6d3277a
Contents?: true
Size: 477 Bytes
Versions: 3
Compression:
Stored size: 477 Bytes
Contents
<table> <tr> <td><%= t("name") %>: </td> <td> <%= f.text_field :name %> </td> </tr> </table> <br/> <h3><%= t("properties") %></h3> <br/> <ul id="properties"> <% Property.sorted.each do |property| %> <li> <%= check_box_tag "property[id][]", "#{property.id}", @prototype.properties.include?(property) %> <%= property.name %> </li> <% end %> </ul> <!-- this div resets the crazy float stuff used to layout the checkboxes --> <div style="clear:both"></div>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
spree-0.6.0 | app/views/admin/prototypes/_form.html.erb |
spree-0.7.0 | app/views/admin/prototypes/_form.html.erb |
spree-0.7.1 | app/views/admin/prototypes/_form.html.erb |