Customers <%= render :partial => 'customers/search' %>
<% if @customers.present? %>
<% @customers.each do |c| %>
<%= link_to c, customer_path(c.id) %>
<% end %>
Matching <%= @customers.count %> Customers
<%= will_paginate @customers %>
<% else %>
There are no customers containing the term(s) <%= params[:search] %>.
<% end %>
<%= Customer.count %> Customers - Last Sync: <%= Qbo.last_sync if Qbo.exists? %>