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