Bike database interface
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
450 B

.container
.row
%h1 Closed Applications
%table.table.table-striped.table-bordered.table-hover
%thead
%tr
%th Name
%th Voided
%th Completed
%th Show
%tbody
- @closed_applications.each do |client|
%tr
%td= client.name
%td= client.application_voided
%td= client.completion_date
%td= link_to 'Show', client
%br