Files
redmine_qbo/app/views/customers/index.html.erb
2016-05-12 09:56:29 -04:00

20 lines
398 B
Plaintext

<h1>Customers</h1>
<br/>
<% @customers.each do |c| %>
<div class="row">
<div class="span6 columns">
<fieldset>
<%= c.name %>
<%= button_to "Show", customer_path(c.id), method: :get %>
</fieldset>
</div>
</div>
<% end %>
<br/>
<div class="actions">
<%= will_paginate @customers %>
<%= button_to "New", new_customer_path, method: :get %>
</div>