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.
19 lines
462 B
19 lines
462 B
.container
|
|
.row
|
|
%h1 Closed Applications
|
|
|
|
%table.table.table-striped.table-bordered.table-hover
|
|
%thead
|
|
%tr
|
|
%th Name
|
|
%th Voided
|
|
%th Completed
|
|
%th Edit
|
|
%tbody
|
|
- @closed_applications.each do |client|
|
|
%tr
|
|
%td= client.name
|
|
%td= client.application_voided
|
|
%td= client.pickup_date
|
|
%td= link_to 'Edit', edit_client_path(client)
|
|
%br
|
|
|