964915bc66
Fizzy is now free. Remove the entire Stripe billing system, subscription management, and card/storage limit enforcement. Removes from saas/: Plan model, Account::Billing, Account::Subscription, Account::Limited, Account::OverriddenLimits, Account::BillingWaiver, all subscription/billing controllers and views, Stripe webhook handler, card creation/publishing limit enforcement, admin account override UI, usage report rake task, and all related tests. Removes from main app: Fizzy.saas? guards for subscription panel, SaaS card footer override, near-limit notices, and saas.css stylesheet. Adds migration to drop billing tables from the SaaS database. Non-billing SaaS features (push notifications, signup, authorization, telemetry, console1984/audits1984) are preserved.
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
<section id="<%= dom_id(card, :card_container) %>" class="card-perma card-perma--draft" style="--card-color: <%= card.color %>;">
|
|
<% cache card do %>
|
|
<div class="card-perma__actions card-perma__actions--left">
|
|
<%= render "cards/container/image", card: card %>
|
|
</div>
|
|
|
|
<div class="card-perma__bg">
|
|
<%= card_article_tag card, class: "card" do %>
|
|
<header class="card__header">
|
|
<%= render "cards/display/perma/board", card: card %>
|
|
<%= render "cards/display/perma/tags", card: card %>
|
|
</header>
|
|
|
|
<div class="card__body justify-space-between">
|
|
<div class="card__content">
|
|
<%= render "cards/container/content", card: card %>
|
|
<%= render "cards/display/perma/steps", card: card %>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="card__footer">
|
|
<%= render "cards/display/perma/meta", card: card %>
|
|
<%= render "cards/display/perma/background", card: card %>
|
|
</footer>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render "cards/container/footer/create", card: card %>
|
|
</section>
|