diff --git a/app/views/static_pages/_fourPool.html.erb b/app/views/static_pages/_fourPool.html.erb deleted file mode 100644 index 4516065..0000000 --- a/app/views/static_pages/_fourPool.html.erb +++ /dev/null @@ -1,100 +0,0 @@ -
Pool 1
- - - - - - - - - - - <% @poolOneWrestlers.sort_by{|x|[x.original_seed]}.each do |w| %> - - - - - - - <% end %> - -
NameR1R2R3
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %>
- - -
Pool 2
- - - - - - - - - - - <% @poolTwoWrestlers.sort_by{|x|[x.original_seed]}.each do |w| %> - - - - - - - <% end %> - -
NameR1R2R3
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %>
- - -
Pool 3
- - - - - - - - - - - <% @poolThreeWrestlers.sort_by{|x|[x.original_seed]}.each do |w| %> - - - - - - - <% end %> - -
NameR1R2R3
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %>
- - -
Pool 4
- - - - - - - - - - - <% @poolFourWrestlers.sort_by{|x|[x.original_seed]}.each do |w| %> - - - - - - - <% end %> - -
NameR1R2R3
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %>
- - -
-
-<% if @bracketType == "fourPoolsToQuarter" %> -<%= render 'fourPoolQuarterBracket' %> -<% end %> -<% if @bracketType == "fourPoolsToSemi" %> -<%= render 'fourPoolSemiBracket' %> -<% end %> \ No newline at end of file diff --git a/app/views/static_pages/_fourPoolBracket.html.erb b/app/views/static_pages/_fourPoolBracket.html.erb deleted file mode 100644 index 6b25baf..0000000 --- a/app/views/static_pages/_fourPoolBracket.html.erb +++ /dev/null @@ -1,192 +0,0 @@ - - - -
Championship Bracket After Pool
-
- - - -
-
- -
3rd/4th
-
- - -
-
- - -
Consolation Bracket After Pool
-
- - - -
-
-
7th/8th
-
- - -
-
- - - - diff --git a/app/views/static_pages/_onePool.html.erb b/app/views/static_pages/_onePool.html.erb deleted file mode 100644 index 9619f3b..0000000 --- a/app/views/static_pages/_onePool.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -
Pool 1
- - - - - - - - - - - - - <% @poolOneWrestlers.each do |w| %> - - - - - - - - - <% end %> - -
NameR1R2R3R4R5
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
Result
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %><%= w.boutByRound(4,@matches) %><%= w.boutByRound(5,@matches) %>
\ No newline at end of file diff --git a/app/views/static_pages/_twoPool.html.erb b/app/views/static_pages/_twoPool.html.erb deleted file mode 100644 index 2e6fe4e..0000000 --- a/app/views/static_pages/_twoPool.html.erb +++ /dev/null @@ -1,66 +0,0 @@ -
Pool 1
- - - - - - - - <% if @bracketType == "twoPoolsToFinal" %> - - - <% end %> - - - - <% @poolOneWrestlers.sort_by{|x|[x.original_seed]}.each do |w| %> - - - - - - <% if @bracketType == "twoPoolsToFinal" %> - - - <% end %> - - <% end %> - -
NameR1R2R3R4R5
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %><%= w.boutByRound(4,@matches) %><%= w.boutByRound(5,@matches) %>
- -
Pool 2
- - - - - - - - <% if @bracketType == "twoPoolsToFinal" %> - - - <% end %> - - - - <% @poolTwoWrestlers.sort_by{|x|[x.original_seed]}.each do |w| %> - - - - - - <% if @bracketType == "twoPoolsToFinal" %> - - - <% end %> - - <% end %> - -
NameR1R2R3R4R5
<%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %><%= w.boutByRound(1,@matches) %>
<%= w.boutByRound(2,@matches) %><%= w.boutByRound(3,@matches) %><%= w.boutByRound(4,@matches) %><%= w.boutByRound(5,@matches) %>
- -<% if @bracketType == "twoPoolsToFinal" %> -<%= render 'twoPoolFinalBracket' %> -<% end %> -<% if @bracketType == "twoPoolsToSemi" %> -<%= render 'twoPoolSemiBracket' %> -<% end %> diff --git a/app/views/static_pages/_twoPoolBracket.html.erb b/app/views/static_pages/_twoPoolBracket.html.erb deleted file mode 100644 index 8d90a69..0000000 --- a/app/views/static_pages/_twoPoolBracket.html.erb +++ /dev/null @@ -1,107 +0,0 @@ - - -
-
Championship Match
-
- - - -
- -
3rd/4th
-
- - - -
-