Files

11 lines
358 B
HTML

{{ define "settings-panel-billing" }}
{{ if .Subscription.HideBilling }}
<section class="card bg-base-200 shadow-sm p-6 space-y-3">
<h2 class="text-xl font-semibold">Billing</h2>
<p class="text-base-content/70">Billing is not enabled on this deployment.</p>
</section>
{{ else }}
{{ template "subscription_plans" .Subscription }}
{{ end }}
{{ end }}