Sha256: df25a0c9214fe9a0f5fe5948f9148f4a724f9a0bfa5f0acb0d49fccadd28f3a8

Contents?: true

Size: 714 Bytes

Versions: 1

Compression:

Stored size: 714 Bytes

Contents

<h1> Listing subscriptions </h1>

<table class="table table-striped">
  <thead>
    <tr>
      <th> Name </th> 
      <th> Price </th> 
      <th> </th> 
      <th> </th> 
      <th> </th> 
    </tr>
  </thead>

  <tbody>
    <% @subscriptions.each do |subscription| %>
      <tr>
        <td><%= subscription.name %></td>
        <td><%= subscription.price %></td>
        <td><%= link_to 'Show', subscription %></td>
        <td><%= link_to 'Edit', edit_subscription_path(subscription)%></td>
        <td><%= link_to 'Destroy', subscription, :confirm => 'Are you sure?',:method => :delete%></td>
      </tr>
    <% end %> 
  </tbody>
</table>

<p>
  <%= link_to 'New Subscription', new_subscription_path %>
</p>

Version data entries

1 entries across 1 versions & 1 rubygems

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