Sha256: c3eed19df1f9aed15d4f69a103e50092428c4aead898aab70b7a344a9a0d884a
Contents?: true
Size: 675 Bytes
Versions: 10
Compression:
Stored size: 675 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Admin Booking Lists</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @admin_booking_lists.each do |admin_booking_list| %> <tr> <td><%= admin_booking_list.name %></td> <td><%= link_to 'Show', admin_booking_list %></td> <td><%= link_to 'Edit', edit_admin_booking_list_path(admin_booking_list) %></td> <td><%= link_to 'Destroy', admin_booking_list, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Admin Booking List', new_admin_booking_list_path %>
Version data entries
10 entries across 10 versions & 1 rubygems