23 lines
425 B
Text
23 lines
425 B
Text
<h1>Listing friendships</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @friends.each do |friend| %>
|
|
<tr>
|
|
<td><%= friend.name %></td>
|
|
<td><%= link_to 'Destroy', friendship_path(friend), method: :delete,
|
|
data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'Add a Friend', users_path %>
|