diff --git a/app/controllers/static_pages_controller.rb b/app/controllers/static_pages_controller.rb
index 7a99334..938d21c 100644
--- a/app/controllers/static_pages_controller.rb
+++ b/app/controllers/static_pages_controller.rb
@@ -36,6 +36,7 @@ class StaticPagesController < ApplicationController
if params[:weight]
@weight = Weight.find(params[:weight])
+ @bracketType = @weight.pool_bracket_type
@tournament = Tournament.find(@weight.tournament_id)
@matches = @tournament.upcomingMatches.select{|m| m.weight_id == @weight.id}
@wrestlers = Wrestler.where(weight_id: @weight.id)
diff --git a/app/views/static_pages/_fourPool.html.erb b/app/views/static_pages/_fourPool.html.erb
index 5e9ff68..4516065 100644
--- a/app/views/static_pages/_fourPool.html.erb
+++ b/app/views/static_pages/_fourPool.html.erb
@@ -92,4 +92,9 @@
-<%= render 'fourPoolBracket' %>
\ No newline at end of file
+<% 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/_fourPoolQuarterBracket.html.erb b/app/views/static_pages/_fourPoolQuarterBracket.html.erb
new file mode 100644
index 0000000..8ef185b
--- /dev/null
+++ b/app/views/static_pages/_fourPoolQuarterBracket.html.erb
@@ -0,0 +1,201 @@
+
+
+
+
Championship Bracket After Pool
+
+
+ <% @matches.select{|m|m.bracket_position == "Quarter"}.sort_by{|m| m.bracket_position_number}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+ <% @matches.select{|m|m.bracket_position == "Semis"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+ <% @matches.select{|m|m.bracket_position == "1/2"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+3rd/4th
+
+
+ <% @matches.select{|m|m.bracket_position == "3/4"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+Consolation Bracket After Pool
+
+
+ <% @matches.select{|m|m.bracket_position == "Conso Semis"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+ <% @matches.select{|m|m.bracket_position == "5/6"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+7th/8th
+
+
+ <% @matches.select{|m|m.bracket_position == "7/8"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+
+
+
+
diff --git a/app/views/static_pages/_fourPoolSemiBracket.html.erb b/app/views/static_pages/_fourPoolSemiBracket.html.erb
new file mode 100644
index 0000000..6b25baf
--- /dev/null
+++ b/app/views/static_pages/_fourPoolSemiBracket.html.erb
@@ -0,0 +1,192 @@
+
+
+
+Championship Bracket After Pool
+
+
+ <% @matches.select{|m|m.bracket_position == "Semis"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+ <% @matches.select{|m|m.bracket_position == "1/2"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+
+3rd/4th
+
+
+ <% @matches.select{|m|m.bracket_position == "3/4"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+
+
+Consolation Bracket After Pool
+
+
+ <% @matches.select{|m|m.bracket_position == "Conso Semis"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+ <% @matches.select{|m|m.bracket_position == "5/6"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+7th/8th
+
+
+ <% @matches.select{|m|m.bracket_position == "7/8"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+
+
+
+
diff --git a/app/views/static_pages/_twoPool.html.erb b/app/views/static_pages/_twoPool.html.erb
index 94742e6..c0bcb2d 100644
--- a/app/views/static_pages/_twoPool.html.erb
+++ b/app/views/static_pages/_twoPool.html.erb
@@ -50,4 +50,9 @@
-<%= render 'twoPoolBracket' %>
\ No newline at end of file
+<% if @bracketType == "twoPoolsToFinal" %>
+<%= render 'twoPoolFinalBracket' %>
+<% end %>
+<% if @bracketType == "twoPoolsToSemi" %>
+<%= render 'twoPoolSemiBracket' %>
+<% end %>
diff --git a/app/views/static_pages/_twoPoolFinalBracket.html.erb b/app/views/static_pages/_twoPoolFinalBracket.html.erb
new file mode 100644
index 0000000..6604bf4
--- /dev/null
+++ b/app/views/static_pages/_twoPoolFinalBracket.html.erb
@@ -0,0 +1,109 @@
+
+
+
+Championship Match
+
+
+ <% @matches.select{|m|m.bracket_position == "1/2"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+3rd/4th
+
+
+ <% @matches.select{|m|m.bracket_position == "3/4"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
diff --git a/app/views/static_pages/_twoPoolSemiBracket.html.erb b/app/views/static_pages/_twoPoolSemiBracket.html.erb
new file mode 100644
index 0000000..cee3580
--- /dev/null
+++ b/app/views/static_pages/_twoPoolSemiBracket.html.erb
@@ -0,0 +1,123 @@
+
+
+
+Championship Bracket After Pool
+
+
+ <% @matches.select{|m|m.bracket_position == "Semis"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+ <% @matches.select{|m|m.bracket_position == "1/2"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
+
+
+3rd/4th
+
+
+ <% @matches.select{|m|m.bracket_position == "3/4"}.each do |match| %>
+ -
+
+ - <%= match.w1_name %> Score
+ - <%= match.boutNumber %>
+ - <%= match.w2_name %>Score
+
+ -
+
+ <% end %>
+
+
+
\ No newline at end of file