Sha256: 937ed87a9cbdb6140f26fc03f9fc380a2f04b9634151f825a8fb6e1bd9bf8b30
Contents?: true
Size: 649 Bytes
Versions: 2
Compression:
Stored size: 649 Bytes
Contents
<%= render :partial => 'admin/products/menu' %> <h1>Listing Option Values</h1> <table> <tr> <td><b>Name</b></td> <td/> </tr> <% for option_value in @option_values %> <tr> <td valign="top"><%= option_value.name -%></td> <td valign="top"> <%= link_to "Edit", :action => 'edit', :id => option_value -%> <%= link_to "Delete", {:action => 'destroy', :id => option_value}, {:confirm => "Are you sure you want to delete this option value?"} -%> </td> </tr> <% end %> </table> <br/><br/> <%= link_to "Add Option Value", :controller => 'option_values', :action => 'new' -%>
Version data entries
2 entries across 2 versions & 1 rubygems