Sha256: 5d5696b20cfdb71b848a33e7a8b79cf799eb5ed71019704bb42ef913ca6cf2ff
Contents?: true
Size: 1.13 KB
Versions: 13
Compression:
Stored size: 1.13 KB
Contents
<% content_for :data_controls do%> <%= link_to "New Menu", new_admin_menu_path(), :class => "btn btn-primary", :title => "New Menu" %> <% end %> <% content_for :detail do %> <div class="table-responsive"> <table class="table table-striped table-hover"> <thead> <tr> <th>Name</th> <th># Items</th> <th> </th> </tr> </thead> <tbody> <% @menus.each do |menu| %> <tr> <td><%= menu.name %></td> <td><%= menu.spud_menu_items.count %></td> <td class="table-actions"> <%= link_to 'Items', admin_menu_menu_items_path(:menu_id => menu.id), :class => 'btn btn-default btn-sm' %> <%= link_to 'Edit', edit_admin_menu_path(:id => menu.id), :class => 'btn btn-default btn-sm' %> <%= link_to 'Delete', admin_menu_path(:id => menu.id), :method => :delete, :data => {:confirm => 'Are you sure?"'}, :class => 'btn btn-danger btn-sm' %> </td> </tr> <% end %> </tbody> </table> </div> <%= will_paginate @menus, :renderer => BootstrapPagination::Rails %> <% end %>
Version data entries
13 entries across 13 versions & 1 rubygems