Sha256: 8fe5a810551b98f7263c349408520e9d549922b16557b687780a68f33bca4693
Contents?: true
Size: 587 Bytes
Versions: 8
Compression:
Stored size: 587 Bytes
Contents
<table> <tr> </tr> <% for friendship in @friendships %> <tr> <td><%= friendship.friend.login %>, <%= friendship.friendship_status.name %></td> <td><%= friendship.initiator? ? "initiator" : "not initiator" %></td> <td><%= time_ago_in_words friendship.created_at %></td> <td><%= link_to(:accept.l, accept_user_friendship_path(@user, friendship), :method => :put) unless friendship.initiator? %></td> <td><%= link_to(:deny.l, user_friendship_path(friendship.user, friendship), :confirm => :are_you_sure.l, :method => :delete) %></td> </tr> <% end %> </table>
Version data entries
8 entries across 8 versions & 1 rubygems