Sha256: 1b57430e768b72dd6638c1d1e4f5ac1cb7f2c76e6540b95b647a1fe9a0777d5d
Contents?: true
Size: 435 Bytes
Versions: 4
Compression:
Stored size: 435 Bytes
Contents
<h1>Listing chats</h1> <table> <tr> <th>Name</th> <th></th> <th></th> <th></th> </tr> <% @chats.each do |chat| %> <tr> <td><%= chat.name %></td> <td><%= link_to 'Show', chat %></td> <td><%= link_to 'Edit', edit_chat_path(chat) %></td> <td><%= link_to 'Destroy', chat, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Chat', new_chat_path %>
Version data entries
4 entries across 4 versions & 1 rubygems