Sha256: 6c527b77b1d585a1ce8f4208fe508f08619001a1888975df28a834300c5df726
Contents?: true
Size: 758 Bytes
Versions: 9
Compression:
Stored size: 758 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Listing Clients</h1> <table> <thead> <tr> <th>Api key</th> <th>Path</th> <th>Redirect urls</th> <th>User</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @clients.each do |client| %> <tr> <td><%= client.api_key %></td> <td><%= client.path %></td> <td><%= client.redirect_urls %></td> <td><%= client.user_id %></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
9 entries across 9 versions & 1 rubygems