Blocca la seconda diretta sullo stesso utente, registra gli abusi in admin e presenta la copertina come grafica caricata dalla società, con demo Team MLTV. Co-authored-by: Cursor <cursoragent@cursor.com>
97 lines
4.6 KiB
ERB
97 lines
4.6 KiB
ERB
<% content_for :title, t("pages.pricing.meta_title") %>
|
|
<% content_for :meta_description, t("pages.pricing.meta_description") %>
|
|
<% content_for :canonical_url, seo_absolute_url(public_prezzi_path) %>
|
|
|
|
<div class="wrap" style="padding-top:24px">
|
|
<% if @club %>
|
|
<h1><%= t("pages.pricing.club_title") %></h1>
|
|
<% if @entitlements %>
|
|
<%= render "shared/club_subscription_status", club: @club, entitlements: @entitlements, subscription: @subscription %>
|
|
<% else %>
|
|
<p style="color:#aaa"><%= raw t(
|
|
"pages.pricing.club_info_html",
|
|
name: @club.name,
|
|
billing_link: link_to(t("pages.pricing.manage_subscription"), public_club_billing_path(@club))
|
|
) %></p>
|
|
<% end %>
|
|
<% else %>
|
|
<h1><%= t("pages.pricing.team_title") %></h1>
|
|
<p style="color:#aaa"><%= t("pages.pricing.team_lead") %></p>
|
|
<% end %>
|
|
<%= render "shared/stripe_secure_payment" %>
|
|
|
|
<%= render "shared/plan_cards" %>
|
|
|
|
<%= render "shared/sponsor_cover_promo", variant: :compact, show_cta: false, nested: true %>
|
|
|
|
<div class="table-scroll compare-table-wrap">
|
|
<table class="compare-table">
|
|
<colgroup>
|
|
<col class="compare-table__feature">
|
|
<col class="compare-table__plan">
|
|
<col class="compare-table__plan">
|
|
<col class="compare-table__plan compare-table__plan--featured">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Free</th>
|
|
<th>Premium Light</th>
|
|
<th>Premium Full</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><%= t("pages.pricing.table_staff") %></td>
|
|
<td>1</td>
|
|
<td>5</td>
|
|
<td><%= t("pages.pricing.table_unlimited") %></td>
|
|
</tr>
|
|
<tr><td><%= t("pages.pricing.table_matches") %></td><td>1</td><td>3</td><td>10</td></tr>
|
|
<tr><td><%= t("pages.pricing.table_live_mltv") %></td><td><%= t("pages.pricing.table_yes") %></td><td><%= t("pages.pricing.table_yes") %></td><td><%= t("pages.pricing.table_yes") %></td></tr>
|
|
<tr><td><%= t("pages.pricing.table_youtube") %></td><td><%= t("pages.pricing.table_no") %></td><td>Match Live TV</td><td><%= t("pages.pricing.table_youtube_club") %></td></tr>
|
|
<tr><td><%= t("pages.pricing.table_replay") %></td><td><%= t("pages.pricing.table_no") %></td><td><%= t("pages.plans.replay_days", count: 30) %></td><td><%= t("pages.plans.replay_days", count: 90) %></td></tr>
|
|
<tr><td><%= t("pages.pricing.table_download") %></td><td><%= t("pages.pricing.table_no") %></td><td><%= t("pages.pricing.table_yes") %></td><td><%= t("pages.pricing.table_yes") %></td></tr>
|
|
<tr>
|
|
<td><%= t("pages.pricing.table_cover_sponsor") %></td>
|
|
<td><%= t("pages.pricing.table_no") %></td>
|
|
<td><%= t("pages.pricing.table_no") %></td>
|
|
<td><%= t("pages.pricing.table_yes") %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><%= t("pages.pricing.table_price") %></td>
|
|
<td><%= t("pages.pricing.table_price_free") %></td>
|
|
<td>
|
|
<div class="compare-price">
|
|
<strong><%= Billing::Stripe::PriceCatalog.label(plan_slug: "premium_light", interval: "yearly") %></strong>
|
|
<span class="compare-price__launch"><%= t("pages.plans.launch_price") %></span>
|
|
<small class="compare-price__note"><%= t(
|
|
"pages.pricing.table_price_note",
|
|
list: Billing::Stripe::PriceCatalog.list_label(plan_slug: "premium_light", interval: "yearly"),
|
|
monthly: Billing::Stripe::PriceCatalog.label(plan_slug: "premium_light", interval: "monthly")
|
|
) %></small>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="compare-price">
|
|
<strong><%= Billing::Stripe::PriceCatalog.label(plan_slug: "premium_full", interval: "yearly") %></strong>
|
|
<span class="compare-price__launch"><%= t("pages.plans.launch_price") %></span>
|
|
<small class="compare-price__note"><%= t(
|
|
"pages.pricing.table_price_note",
|
|
list: Billing::Stripe::PriceCatalog.list_label(plan_slug: "premium_full", interval: "yearly"),
|
|
monthly: Billing::Stripe::PriceCatalog.label(plan_slug: "premium_full", interval: "monthly")
|
|
) %></small>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="card" style="margin-top:32px;text-align:center">
|
|
<h3 style="margin-top:0"><%= t("pages.pricing.different_title") %></h3>
|
|
<p style="color:#aaa;margin-bottom:16px"><%= t("pages.pricing.different_body") %></p>
|
|
<%= link_to t("pages.pricing.contact_button"), public_contatti_path, class: "btn btn-primary" %>
|
|
</div>
|
|
</div>
|