Sha256: 68f4b00c2e1ab3a71db826b05363822a4fc58ed624bd69733b7b39cd153d26d5

Contents?: true

Size: 469 Bytes

Versions: 55

Compression:

Stored size: 469 Bytes

Contents

<% if @shop.current_subscription? %>
  <p>
    You are currently on the <%= @shop.current_subscription.plan.name %> plan.
  </p>
  <p>
    Choose a new plan:
  </p>
<% else %>
  <p>
    Welcome!
  </p>
  <p>
    Choose a plan below to get started:
  </p>
<% end %>

<% for plan in DiscoApp::Plan.available %>

  <h2><%= plan.name %></h2>
  <%= form_for(@subscription) do |f| %>
    <%= f.hidden_field :plan, value: plan.id %>
    <%= f.submit %>
  <% end %>

<% end %>

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
disco_app-0.16.1.pre.sidekiq.pre.6.pre.release app/views/disco_app/subscriptions/new.html.erb
disco_app-0.8.8 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.8.9 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.0 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.1 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.2 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.3 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.4 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.5 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.6 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.7 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.8 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.9 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.10 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.9.11 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.10.0 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.10.1 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.10.2 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.10.3 app/views/disco_app/subscriptions/new.html.erb
disco_app-0.10.4 app/views/disco_app/subscriptions/new.html.erb