1
0
Fork 0
find-us-lunch/app/views/friendships/index.html.erb

23 lines
436 B
Text
Raw Normal View History

2014-10-15 13:32:35 -04:00
<h1>Listing friendships</h1>
<table>
<thead>
<tr>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @friendships.each do |friendship| %>
<tr>
<td><%= link_to 'Show', friendship %></td>
<td><%= link_to 'Destroy', friendship, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Friendship', new_friendship_path %>