<%= link_to "← Società e squadre", admin_clubs_path %>

<%= @club.name %>

Sport: <%= @club.sport %> · <%= link_to "Pagamenti e fatture", admin_billing_path(club_id: @club.id) %> · <%= link_to "Canale YouTube piattaforma", admin_youtube_platform_path %>

<%= render "admin/clubs/comped_form", club: @club, subscription: @subscription, return_to: admin_club_path(@club) %>

Squadre

<% if @teams.empty? %>

Nessuna squadra registrata.

<% else %> <% @teams.each do |team| %> <% yt = Youtube::TeamStatus.new(team) %> <% end %>
Squadra Sport YouTube
<%= team.name %> <%= team.sport %> <% if yt.selectable? %> <% if yt.uses_platform_channel? %> Match Live TV <% if team.youtube_credential.blank? && team.entitlements.premium_full? %> (default Full) <% end %> <% else %> ✓ <%= yt.channel_title.presence || "Canale società" %> <% end %> <% elsif team.entitlements.youtube_enabled? %> In configurazione <% else %> — <% end %> <%= link_to "Partite e dettagli", admin_team_path(team) %>
<% end %>