1
0
Fork 0
find-us-lunch/app/views/friendships/index.html.erb
2014-10-27 12:16:50 -04:00

28 lines
628 B
Text

<h2>Listing friendships</h2>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Name</th>
<th>Created</th>
<th>Updated</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<% @friendships.each do |friendship| %>
<tr>
<td><%= friendship.friend.name %></td>
<td><%= friendship.created_at %></td>
<td><%= friendship.updated_at %></td>
<td>[ <%= link_to 'Destroy', friendship, method: :delete,
data: { confirm: 'Are you sure?' } %> ]</td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'Add a Friend', users_path %>