Update index.html.erb

This commit is contained in:
2016-04-26 14:09:15 -04:00
parent 792773b945
commit cd5ed4f3a7

View File

@@ -1,6 +1,6 @@
<h1>Customers</h1> <h1>Customers</h1>
<br/> <br/>
<% QboCustomer.all.each do |c| %> <% @customers do |c| %>
<div class="row"> <div class="row">
<div class="span6 columns"> <div class="span6 columns">
<fieldset> <fieldset>
@@ -11,6 +11,8 @@
</div> </div>
<% end %> <% end %>
<%= @customer_pages %>
<div class="actions"> <div class="actions">
<%= button_to "New", new_customer_path, method: :get %> <%= button_to "New", new_customer_path, method: :get %>
</div> </div>