Sha256: 503cafcaa1b907db344472a32b438db6a48c8028c1f359f1e4294d5673202542
Contents?: true
Size: 535 Bytes
Versions: 5
Compression:
Stored size: 535 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Rooms</h1> <table> <thead> <tr> <th>Name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @rooms.each do |room| %> <tr> <td><%= room.name %></td> <td><%= link_to 'Show', room %></td> <td><%= link_to 'Edit', edit_room_path(room) %></td> <td><%= link_to 'Destroy', room, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Room', new_room_path %>
Version data entries
5 entries across 5 versions & 1 rubygems