MorningPeak/app/views/clients/index.html.slim
Arthur Poulet b33dd3f3cc Update all forms for admin
- forms are full bootstraped
- datepicker in jquery for date fields
- installation of jquery ui
2015-07-21 07:21:58 +02:00

42 lines
968 B
Plaintext

h1.page-header Listing clients
table.table.table-condensed
thead
tr
td ID
th Name
th Url
th Activity
th Contact reasons
th Last Contact
th Contact
th Financial Quality
th Retard
th Weight
th Next
th
th
th
tbody
- @clients.each do |client|
tr
td = client.id
td = link_to client.name, client
td = client.url
td = client.activity
td = client.contact_reasons
td = client.last_contact
td = link_to client.contact_name, client.contact
td = client.financial_level
td = client.retard
td = client.weight
td = client.next
td = link_to 'Show', client
td = link_to 'Edit', edit_client_path(client)
td = link_to 'Destroy', client, data: {:confirm => 'Are you sure?'}, :method => :delete
br
= link_to 'New Client', new_client_path, class: 'btn btn-sm btn-default'