1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Added tip on seeding page to inform of pool separation on pool to bracket tournaments

This commit is contained in:
2019-04-19 21:50:31 -04:00
parent b89762b5bb
commit 62f300841e

View File

@@ -48,17 +48,42 @@
<% end %> <% end %>
</tbody> </tbody>
</table> </table>
<br><p>*All wrestlers without a seed (determined by tournament director) will be assigned a random seed.</p> <br><p>*All wrestlers without a seed (determined by tournament director) will be assigned a bracket line.</p>
<% if can? :manage, @tournament %> <% if can? :manage, @tournament %>
<br> <br>
<%= submit_tag "Save Seeds", :class=>"btn btn-success"%> <%= submit_tag "Save Seeds", :class=>"btn btn-success"%>
<% end %> <% end %>
<% end %> <% end %>
<br>
<% if @tournament.tournament_type == "Pool to bracket" %>
<div>
<strong>Pool assignments by seed:</strong>
<ul>
<li>Two Pools
<ul>
<li>Pool 1: Seed 1 & 4</li>
<li>Pool 2: Seed 2 & 3</li>
</ul>
</li>
<li>Four Pools
<ul>
<li>Pool 1: Seed 1 & 8</li>
<li>Pool 2: Seed 2 & 7</li>
<li>Pool 3: Seed 3 & 6</li>
<li>Pool 4: Seed 4 & 5</li>
</ul>
</li>
<li>Four Pools
<ul>
<li>Pool 1: Seed 1</li>
<li>Pool 2: Seed 2</li>
<li>Pool 3: Seed 3</li>
<li>Pool 4: Seed 4</li>
<li>Pool 5: Seed 5</li>
<li>Pool 6: Seed 6</li>
<li>Pool 7: Seed 7</li>
<li>Pool 8: Seed 8</li>
</ul>
</li>
</div>
<% end %>