You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
625 B
25 lines
625 B
10 years ago
|
.container
|
||
|
%h1 Clients
|
||
|
|
||
|
%table.table.table-striped.table-bordered.table-hover
|
||
|
%thead
|
||
|
%tr
|
||
|
%th First Name
|
||
|
%th Last Name
|
||
|
%th Agency
|
||
|
%th
|
||
|
%th
|
||
|
%th
|
||
|
%tbody
|
||
|
- @clients.each do |client|
|
||
|
%tr
|
||
|
%td= client.first_name
|
||
|
%td= client.last_name
|
||
|
%td= client.agency
|
||
|
%td= link_to 'Show', client
|
||
|
%td= link_to 'Edit', edit_client_path(client)
|
||
|
%td= link_to 'Destroy', client, method: :delete, data: { confirm: 'Are you sure?' }
|
||
|
|
||
|
%br
|
||
|
= link_to ' + New Client', new_client_path, class: "btn btn-default"
|