Sha256: d1c75c9094da09ad3d78dd5bf175d8d6bc5d7fb180352d60b9170b97b7d4acda
Contents?: true
Size: 703 Bytes
Versions: 20
Compression:
Stored size: 703 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Publickeys</h1> <table> <thead> <tr> <th>Name</th> <th>Data</th> <th>User</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @publickeys.each do |publickey| %> <tr> <td><%= publickey.name %></td> <td><%= publickey.data %></td> <td><%= publickey.user %></td> <td><%= link_to 'Show', publickey %></td> <td><%= link_to 'Edit', edit_publickey_path(publickey) %></td> <td><%= link_to 'Destroy', publickey, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Publickey', new_publickey_path %>
Version data entries
20 entries across 20 versions & 1 rubygems