Sha256: 65b92d63446c428c3ec47f25a3b36eb16ba3e75427a6d69488008c0df06ece83

Contents?: true

Size: 531 Bytes

Versions: 1

Compression:

Stored size: 531 Bytes

Contents

<h1> Subscription details </h1>
<p>
  <b>Name:</b> <%= @subscription.name %>
</p>


<p>
  <b>Price:</b> <%= number_to_currency @subscription.price %>
</p>

<% if @subscription.customers.present? %>
  <h2> Subscribers </h2>
  <ul id="subscribers">
    <% @subscription.customers.each do |subscriber| %>
      <li>
        <%= link_to subscriber.email , customer_path(subscriber) %>
      </li>
    <% end %>
  </ul>
<% end %>

<%= link_to 'Edit', edit_subscription_path(@subscription) %> |
<%= link_to 'Back', subscriptions_path %>

Version data entries

1 entries across 1 versions & 1 rubygems

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