Sha256: bff81753c10291aedbe2b2ed8368ed1cd4008cb43e1ffa659f85341d72a69bd8
Contents?: true
Size: 690 Bytes
Versions: 40
Compression:
Stored size: 690 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Demands</h1> <table> <thead> <tr> <th>User</th> <th>Item</th> <th>Message</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @demands.each do |demand| %> <tr> <td><%= demand.user_id %></td> <td><%= demand.item_id %></td> <td><%= demand.message_id %></td> <td><%= link_to 'Show', demand %></td> <td><%= link_to 'Edit', edit_demand_path(demand) %></td> <td><%= link_to 'Destroy', demand, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Demand', new_demand_path %>
Version data entries
40 entries across 40 versions & 1 rubygems