Skip to content

Instantly share code, notes, and snippets.

@dmitrynesterov
Last active December 14, 2015 02:19
<h1>Listing clients</h1>
<table>
<tr>
<th>Name</th>
<th>Description</th>
<th>Priority</th>
<th>Clienttype</th>
<th>User</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @clients.each do |client| %>
<tr>
<td><%= client.name %></td>
<td><%= client.description %></td>
<td><%= client.priority %></td>
<td><%= client.clienttype %></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 %>
</table>
<br />
<%= link_to 'New Client', new_client_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment