<% content_for :title, t("matches.club_new.title", name: @club.name) %> <% content_for :robots, "noindex, nofollow" %>

<%= link_to t("matches.club_new.back_link"), public_live_index_path(club_id: @club.id), class: "back-link" %>

<%= t("matches.club_new.heading") %>

<%= @club.name %> <% if @club_admin %> <%= t("matches.club_new.admin_hint") %> <% else %> <%= t("matches.club_new.staff_hint") %> <% end %>

<%= form_with url: public_club_matches_path(@club), method: :post, local: true do %> <%= label_tag :team_id, t("matches.club_new.team_label") %> <% if @schedulable_teams.size == 1 %> <%= hidden_field_tag :team_id, @selected_team.id %>

<%= @selected_team.name %>

<% else %> <%= select_tag :team_id, options_from_collection_for_select(@schedulable_teams, :id, :name, @selected_team&.id), required: true %> <% end %> <%= render "public/matches/schedule_fields", match: @match %> <%= submit_tag t("matches.club_new.submit"), class: "btn btn-primary", style: "margin-top:20px" %> <% end %>