Listing locations

<% @locations.each do |location| %> <% end %>
Number Street City State Zip Url Customer
<%= link_to location.number, location_doors_path(location) %> <%=h location.street %> <%=h location.city %> <%=h location.state %> <%=h location.zip %> <%=h location.url %> <%=h location.customer_id %> <%= link_to 'Edit', edit_location_path(location) %> <%= link_to 'Destroy', location, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New location', new_customer_location_path(@customer) %>