Sha256: 59d3afeadc3d3470827abec4f47131186d3f34df04604fa813cc6fa1fcd84e8a
Contents?: true
Size: 577 Bytes
Versions: 8
Compression:
Stored size: 577 Bytes
Contents
<%= render :partial => 'admin/products/menu' %> <h1>Listing Option Types</h1> <table> <tr> <td><b>Name</b></td> <td/> </tr> <% @option_types.each do |ot| %> <tr> <td valign="top"><%= ot.name -%></td> <td valign="top"> <%= link_to "Edit", :action => 'edit', :id => ot -%> <%= link_to "Delete", {:action => 'destroy', :id => ot}, {:confirm => "Are you sure you want to delete this option type?"} -%> </td> </tr> <% end %> </table> <br/><br/> <%= link_to "Add Option Type", :action => 'new' -%>
Version data entries
8 entries across 8 versions & 2 rubygems