<%= notice %>
<% content_for :title, "Clients" %>
Clients
<% client_view_fields.each do |attrib| %>
| <%= attrib.to_s.humanize %> |
<% end %>
<% @clients.each do |client| %>
<%= render client %>
<% end %>
<%= link_to "New client", new_client_path %>
<%= link_to "Back to main", "/" %>