Sha256: e83a98ea62bcd468bbf98f0586f136ccbd0e4ed247db7371c2a408c6b5df5169
Contents?: true
Size: 700 Bytes
Versions: 18
Compression:
Stored size: 700 Bytes
Contents
<% if @subscription.plan.present? %> <h2>You're Subscribed!</h2> <p>You're currently subscribed to the <%= @subscription.plan.name %> plan.</p> <%= link_to 'Choose Another Plan', edit_owner_subscription_path(@owner, @subscription), class: 'btn' %> <% else %> <h2>No Subscription</h2> <p>You are not subscribed to a paid plan.</p> <%= link_to 'Choose A Plan', edit_owner_subscription_path(@owner, @subscription), class: 'btn' %> <% end %> <br><br> <h4>Payment Information</h4> <p>The card on file for your account ends with <%= @subscription.last_four %>.</p> <%= link_to 'Update Payment Information', edit_owner_subscription_path(@owner, @subscription, update: 'card'), class: 'btn' %>
Version data entries
18 entries across 18 versions & 2 rubygems