Create index.html.erb

This commit is contained in:
2016-04-26 09:16:32 -04:00
parent b692abcb64
commit ab68b1cf89

View File

@@ -0,0 +1,15 @@
<h1>Customers</h1>
<br/>
<% QboCustomers.all.each do |c| %>
<div class="row">
<div class="span6 columns">
<fieldset>
<% @customer = c.name%>
</fieldset>
</div>
</div>
<% end %>
<div class="actions">
<%= button_to "New", new_customer_path, method: :get %>
</div>