Files
parse/app/views/clients/index.html.erb
2025-07-23 17:33:01 +02:00

28 lines
552 B
Plaintext

<p style="color: green"><%= notice %></p>
<% content_for :title, "Clients" %>
<h1>Clients</h1>
<div id="clients">
<table>
<thead>
<tr>
<% client_view_fields.each do |attrib| %>
<th><%= attrib.to_s.humanize %></th>
<% end %>
</tr>
</thead>
<tbody>
<% @clients.each do |client| %>
<tr id="<%= dom_id client %>">
<%= render client %>
</tr>
<% end %>
</tbody>
</table>
</div>
<%= link_to "New client", new_client_path %>
<%= link_to "Back to main", "/" %>