12 lines
491 B
Plaintext
12 lines
491 B
Plaintext
<% if Current.user.admin? && !Current.account.comped? %>
|
|
<section class="panel panel--wide settings-subscription__panel shadow center margin-block-double hide-on-native">
|
|
<h2 id="subscription" class="divider settings-subscription__divider txt-small txt-uppercase margin-none">Subscription</h2>
|
|
|
|
<% if Current.account.plan.free? %>
|
|
<%= render "account/settings/free_plan" %>
|
|
<% else %>
|
|
<%= render "account/settings/paid_plan" %>
|
|
<% end %>
|
|
</section>
|
|
<% end %>
|