mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
25 lines
577 B
Plaintext
25 lines
577 B
Plaintext
<h2>Customers <span style="float:right"> <%= render :partial => 'customers/search' %> </span> </h2>
|
|
<% if @customers.present? %>
|
|
<br/>
|
|
<% @customers.each do |c| %>
|
|
<div class="row">
|
|
<div class="span6 columns">
|
|
<%= link_to c, customer_path(c.id) %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<p>Matching <%= @customers.count %> Customers </p>
|
|
|
|
<div class="actions">
|
|
<%= will_paginate @customers %>
|
|
</div>
|
|
|
|
<% else %>
|
|
<p>There are no customers containing the term(s) <%= params[:search] %>.</p>
|
|
<% end %>
|
|
|
|
<div>
|
|
<%= render :partial => 'qbo/stats' %>
|
|
</div>
|