% content_for :title, t("club.billing.title", name: @club.name) %>
<% content_for :robots, "noindex, nofollow" %>
<%= t("billing.heading") %>
<%= render "shared/club_subscription_status", club: @club, entitlements: @entitlements, subscription: @subscription, on_billing_page: true %>
<% if @subscription&.admin_comped? %>
<%= t("club.billing.comped.title") %>
<%= t("club.billing.comped.plan_prefix") %> <%= @subscription.plan.name %>
<% if @subscription.admin_comped_reason.present? %>
(<%= @subscription.admin_comped_reason %>)
<% end %>.
<%= raw t("club.billing.comped.no_payment_html", email_link: mail_to("info@matchlivetv.it", "info@matchlivetv.it")) %>
<% else %>
<% if @quote %>
<%= render "shared/quoted_price_banner", quote: @quote, subscription: @subscription %>
<% elsif MatchLiveTv.stripe_enabled? %>
<%= render "shared/stripe_secure_payment" %>
<% if @subscription.blank? || @subscription.plan&.slug == "free" || !@subscription.active? %>
<%= render "shared/refund_guarantee", variant: "checkout" %>
<% end %>
<% end %>
<%= render "shared/pending_bank_transfer", order: @pending_transfer %>
<% if MatchLiveTv.stripe_enabled? && @quote.blank? %>
<%= render "shared/plan_change_info", subscription: @subscription %>
<% end %>
<%= render "shared/plan_cards", show_stripe_portal: false %>
<% if @subscription&.bank_transfer? %>
<%= raw t("billing.bank_transfer.renewal_html") %>
<% end %>
<%= render "shared/subscription_cancel", club: @club, subscription: @subscription %>
<% end %>
<%= render "shared/billing_documents", club: @club, payments: @payments %>
<%= link_to t("club.back_to_club"), public_club_path(@club) %>