Tournament bracket generation is currently running. Please refresh the page to check progress.
The following background jobs are currently running:
Please refresh the page to check progress.
Address: <%= @tournament.address %>
Director: <%= @tournament.director %>
Director email: <%= @tournament.director_email %>
Tournament Type: <%= @tournament.tournament_type %>
Tournament Date: <%= @tournament.date %>
Tournament Information Is Public: <%= @tournament.is_public %>
<% if can? :read, @tournament %>Brackets and team scores can be found in the white nav-bar up top.
<% end %>Click to see lineups, bout numbers, score breakdowns, and stats.
| Name | <% if can? :manage, @tournament %><%= link_to " New School" , "/schools/new?tournament=#{@tournament.id}", :class=>"fas fa-plus" %> | <% end %>
|---|---|
| <% if can? :read, school %> <%= link_to "#{school.name}", school %> <% else %> <%= "#{school.name}" %> <% end %> | <% if can? :manage, school %> <%= link_to edit_school_path(school), class: "text-decoration-none" do %> <% end %> <% if can? :manage, @tournament %> <%= link_to school, data: { turbo_method: :delete, turbo_confirm: "Are you sure you want to delete #{school.name}?" }, class: "text-decoration-none" do %> <% end %> <% end %> <% end %> |
| Weight Class | Bracket Size | <% if can? :manage, @tournament %><%= link_to " New Weight Class" , "/weights/new?tournament=#{@tournament.id}", :class=>"fas fa-plus" %> | <% end %>
|---|---|---|
| <% if can? :read, @tournament %> <%= link_to "#{weight.max}", weight %> <% else %> <%= "#{weight.max}" %> <% end %> | <%= weight.bracket_size %> | <% if can? :manage, @tournament %><%= link_to edit_weight_path(weight), class: "text-decoration-none" do %> <% end %> <%= link_to weight, data: { turbo_method: :delete, turbo_confirm: "Are you sure you want to delete the #{weight.max} weight class?" }, class: "text-decoration-none" do %> <% end %> | <% end %>
| Name | <%= link_to " New Mat" , "/mats/new?tournament=#{@tournament.id}", :class=>"fas fa-plus" %> |
|---|---|
| <%= link_to "Mat #{mat.name}", mat %> | <% if can? :manage, @tournament %><%= link_to mat, data: { turbo_method: :delete, turbo_confirm: "Are you sure you want to delete Mat #{mat.name}?" }, class: "text-decoration-none" do %> <% end %> <%= link_to '', "/mats/#{mat.id}/assign_next_match", data: { turbo_method: :post }, :class=>"fas fa-solid fa-arrow-right" %> | <% end %>