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

28 lines
649 B
Text

<h2>Friends List</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><%= link_to friendship.friend.name, friendship.friend %></td>
<td><%= friendship.created_at %></td>
<td><%= friendship.updated_at %></td>
<td><%= link_to glyph('trash'), friendship, method: :delete,
data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'Add a Friend', users_path %>