Tournament Administration

Create New Tournament

<% if upcoming.any? %>

Upcoming / Active Tournaments

<% upcoming.each do |tournament| %> <% end %>
Name Date Format Status Actions
<%= tournament.name %> <%= tournament.event_date&.strftime('%Y-%m-%d %H:%M') %> <%= tournament.format %> <%= tournament.status %> View | Edit
<% end %> <% if completed.any? %>

Past Tournaments

<% completed.each do |tournament| %> <% end %>
Name Date Format Actions
<%= tournament.name %> <%= tournament.event_date&.strftime('%Y-%m-%d') %> <%= tournament.format %> View Results
<% end %> <% if upcoming.empty? && completed.empty? %>

No tournaments yet. Create your first tournament!

<% end %>

Back to Admin