mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-03 13:30:02 +00:00
13 lines
377 B
Plaintext
13 lines
377 B
Plaintext
<%= link_to "Back to #{@tournament.name} weights", "/static_pages/weights?tournament=#{@tournament.id}" %>
|
|
<br>
|
|
<br>
|
|
<h1><%= @weight.max %> lbs Bracket</h1>
|
|
<% if @bracket_size == 10 %>
|
|
<%= render 'man10' %>
|
|
<% elsif @bracket_size == 9 %>
|
|
<%= render 'man9' %>
|
|
<% elsif @bracket_size == 8 %>
|
|
<%= render 'man8' %>
|
|
<% elsif @bracket_size == 7 %>
|
|
<%= render 'man7' %>
|
|
<% end %> |