Sha256: b9f4dddfd2a26f09eaae9a931a9ed26a189d8e14eb858248f1d91f1c36edecab
Contents?: true
Size: 677 Bytes
Versions: 5
Compression:
Stored size: 677 Bytes
Contents
<h1>Listing followings</h1> <table> <thead> <tr> <th>Actor</th> <th>Target actor</th> <th>Status</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @followings.each do |following| %> <tr> <td><%= following.actor %></td> <td><%= following.target_actor %></td> <td><%= following.status %></td> <td><%= link_to 'Show', following %></td> <td><%= link_to 'Edit', edit_following_path(following) %></td> <td><%= link_to 'Destroy', following, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <%= link_to 'New Following', new_following_path %>
Version data entries
5 entries across 5 versions & 1 rubygems