1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-07 23:17:25 +00:00

First shot at setting placement points for a single pool

This commit is contained in:
2016-01-28 16:36:13 +00:00
parent a8b96c96e8
commit 1b9151a888
3 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<h5>Results</h5>
<br>
<ol>
<li><%= @weight.poolOrder(1).first.name %></li>
<li><%= @weight.poolOrder(1).second.name %></li>
<li><%= @weight.poolOrder(1).third.name %></li>
<li><%= @weight.poolOrder(1).fourth.name %></li>
</ol>

View File

@@ -23,4 +23,8 @@
<% if @bracketType == "fourPoolsToSemi" %>
<%= render 'fourPoolSemiBracket' %>
<% end %>
<br><br>
<% if @weight.size <= 6 && @weight.allPoolMatchesFinished(1) %>
<%= render 'onePoolResults' %>
<% end %>
<% end %>