mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-14 17:06:46 +00:00
Created one page for all pools
This commit is contained in:
35
app/views/static_pages/_pool.html.erb
Normal file
35
app/views/static_pages/_pool.html.erb
Normal file
@@ -0,0 +1,35 @@
|
||||
<% @round = 1 %>
|
||||
<% @pool = 1 %>
|
||||
<% until @wrestlers.select{|w| w.generatePoolNumber == @pool}.blank? %>
|
||||
<h5>Pool <%= @pool %></h5>
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<% until @matches.select{|m| m.round == @round}.blank? %>
|
||||
<% if @round <= @weight.poolRounds(@matches) %>
|
||||
<th>R<%= @round %></th>
|
||||
<% end %>
|
||||
<% @round = @round + 1 %>
|
||||
<% end %>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<% @wrestlers.select{|w| w.generatePoolNumber == @pool}.each do |w| %>
|
||||
<tr>
|
||||
<td><%= w.original_seed %> <%= w.name %> <%= w.season_win %>-<%= w.season_loss %> <%= w.school.name %></td>
|
||||
<% @round = 1 %>
|
||||
<% until @matches.select{|m| m.round == @round}.blank? %>
|
||||
<% if @round <= @weight.poolRounds(@matches) %>
|
||||
<td><%= w.boutByRound(@round,@matches) %><br>Result</td>
|
||||
<% end %>
|
||||
<% @round = @round + 1 %>
|
||||
<% end %>
|
||||
|
||||
</tr>
|
||||
<% end %>
|
||||
</tbody>
|
||||
</table>
|
||||
<% @pool = @pool + 1 %>
|
||||
<% @round = 1 %>
|
||||
<% end %>
|
||||
Reference in New Issue
Block a user