Upcoming Tournaments

<%= form_tag(tournaments_path, :method => "get", id: "search-form") do %> <%= text_field_tag :search, params[:search], placeholder: "Search Tournaments" %> <%= submit_tag "Search" %> <% end %>

Search by name or date YYYY-MM-DD


<% end %> <% @tournaments.each do |tournament| %> <% end %>
Name Date <% if user_signed_in? %><%= link_to ' New Tournament', new_tournament_path, :class=>"fas fa-plus" %>
<%= link_to "#{tournament.name}", tournament %> <%= tournament.date %> <% if can? :manage, tournament %> <%= link_to '', edit_tournament_path(tournament), :class=>"fas fa-edit" %> <% if can? :destroy, tournament %> <%= link_to '', tournament, method: :delete, data: { confirm: "Are you sure you want to delete #{tournament.name}?" }, :class=>"fas fa-trash-alt" %> <% end %> <% end %>