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