<% content_for :title, "Nuova squadra — #{@club.name}" %> <% content_for :robots, "noindex, nofollow" %>

Nuova squadra

Società: <%= @club.name %>

<%= form_with url: public_club_teams_path(@club), multipart: true do %> <%= label_tag "team[name]", "Nome squadra" %> <%= text_field_tag "team[name]", nil, required: true, placeholder: "es. Under 13, Serie C" %> <%= label_tag "team[sport]", "Sport" %> <%= select_tag "team[sport]", options_for_select([["Pallavolo", "volleyball"], ["Calcio", "football"], ["Basket", "basketball"]], @club.sport) %> <%= render "shared/branding_fields", record: Team.new(club: @club), show_inherit_hint: true, legend: "Override branding (opzionale)" %> <%= submit_tag "Aggiungi squadra", class: "btn btn-primary" %> <% end %>