mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
<h1>Customers</h1>
|
|
<br/>
|
|
<% @customers.each do |c| %>
|
|
<div class="row">
|
|
<div class="span6 columns">
|
|
<fieldset>
|
|
<% @customer = c.name%>
|
|
<%= render :partial => 'customers/details' %>
|
|
</fieldset>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<br/>
|
|
|
|
<div class="actions">
|
|
<%= will_paginate @customers %>
|
|
<%= button_to "New", new_customer_path, method: :get %>
|
|
</div>
|