mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
11 lines
409 B
Plaintext
11 lines
409 B
Plaintext
<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}", :class=>"btn btn-default" %>
|
|
<br>
|
|
<br>
|
|
<% @weights.each do |weight| %>
|
|
<%= link_to "#{weight.max}" , "/tournaments/#{@tournament.id}/brackets/#{weight.id}" %>
|
|
<br>
|
|
<% end %>
|
|
<% if tournament_permissions(@tournament) %>
|
|
<%= link_to "All Brackets (Printable)", "/tournaments/#{@tournament.id}/all_brackets?print=true" %>
|
|
<% end %>
|