mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-29 20:27:16 +00:00
11 lines
358 B
HTML
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 }}
|