Sha256: 68dfd6a53c9655651dbcff7325d57f05fde4a8f28a4ba83d1c906d17c702e85d

Contents?: true

Size: 768 Bytes

Versions: 1

Compression:

Stored size: 768 Bytes

Contents

<h1> Listing customers </h1>
<table class="table table-striped">
  <thead>
    <tr>
      <th>Email</th>
      <th>Description</th>
      <th>Subscription</th>
      <th></th>
      <th></th>
      <th></th>
    </tr>
  </thead>

  <% @customers.each do |customer| %>
    <tr id="customer-<%= customer.id %>">
      <td><%= customer.email %> </td>
      <td><%= customer.description %> </td>
      <td><%= subscription_name_when_available(customer) %> </td>
      <td><%= link_to 'Show', customer %> </td>
      <td><%= link_to 'Edit', edit_customer_path(customer) %> </td>
      <td><%= link_to 'Destroy', customer, :confirm => 'Are you sure?', :method => :delete %> </td>
    </tr>
  <% end %>

</table>


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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jackpot-0.0.3 app/views/jackpot/customers/index.html.erb