Sha256: f95248d1a0e1b5018b1e9fb22e477c213bbb085a6e4ac0059e044c1f91616330
Contents?: true
Size: 509 Bytes
Versions: 19
Compression:
Stored size: 509 Bytes
Contents
<h1>Listing clients</h1> <table> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <% @clients.each do |client| %> <tr> <td><%= client.name %></td> <td><%= link_to 'Show', client %></td> <td><%= link_to 'Edit', edit_client_path(client) %></td> <td><%= link_to 'Destroy', client, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Client', new_client_path %>
Version data entries
19 entries across 19 versions & 2 rubygems