Files
fizzy/saas/app/views/account/settings/_subscription_panel.html.erb
T
2026-02-27 09:40:05 -05:00

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 %>