diff --git a/app/views/static_pages/_man7.html.erb b/app/views/static_pages/_man7.html.erb index c386fbe..f52d585 100644 --- a/app/views/static_pages/_man7.html.erb +++ b/app/views/static_pages/_man7.html.erb @@ -72,9 +72,9 @@ 6. <%= @seed2.name %> <%= @seed2.season_win %>-<%= @seed2.season_loss %> BYE - BYE + V8 V10 - V9 + BYE BYE @@ -87,7 +87,7 @@ 8. <%= @seed6.name %> <%= @seed6.season_win %>-<%= @seed6.season_loss %> - V9 + BYE V6 BYE V10 @@ -106,8 +106,8 @@ BYE BYE V6 + V8 BYE - V9 \ No newline at end of file diff --git a/app/views/static_pages/brackets.html.erb b/app/views/static_pages/brackets.html.erb index f2daad4..1fbc670 100644 --- a/app/views/static_pages/brackets.html.erb +++ b/app/views/static_pages/brackets.html.erb @@ -1,12 +1,9 @@ -<% if @bracket_size = 10 %> -<%= render 'man10' %> -<% end %> -<% if @bracket_size = 9 %> -<%= render 'man9' %> -<% end %> -<% if @bracket_size = 8 %> -<%= render 'man8' %> -<% end %> -<% if @bracket_size = 7 %> -<%= render 'man7' %> +<% 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 %> \ No newline at end of file