Listing customers

<% @customers.each do |customer| %> <% end %>
Email Description Subscription
<%= customer.email %> <%= customer.description %> <%= subscription_name_when_available(customer) %> <%= link_to 'Show', customer %> <%= link_to 'Edit', edit_customer_path(customer) %> <%= link_to 'Destroy', customer, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New Customer', new_customer_path %>