Sha256: 0291bda00f8325f6408b3a5da68eeb388209b5671d07e62cb1541ae5d0e6cb2d
Contents?: true
Size: 406 Bytes
Versions: 10
Compression:
Stored size: 406 Bytes
Contents
<h1>Listing admins</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @admins.each do |admin| %> <tr> <td><%= link_to 'Show', admin %></td> <td><%= link_to 'Edit', edit_admin_path(admin) %></td> <td><%= link_to 'Destroy', admin, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Admin', new_admin_path %>
Version data entries
10 entries across 10 versions & 2 rubygems