1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-31 11:35:45 +00:00
Files
wrestlingdev.com/app/views/static_pages/_man2.html.erb
2014-01-30 22:06:18 -05:00

58 lines
1002 B
Plaintext

<h3>Pool 1</h3>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Name</th>
<th>R1</th>
<th>R2</th>
<th>R3</th>
<th>R4</th>
<th>R5</th>
</tr>
</thead>
<tbody>
<tr>
<td>1. <%= @seed1.name %> <%= @seed1.season_win %>-<%= @seed1.season_loss %> <%= School.find(@seed1.school_id).name %></td>
<td>BYE</td>
<td>BYE</td>
<td>V5</td>
<td>BYE</td>
<td>BYE</td>
</tr>
<tr>
<td>2. BYE</td>
<td>V1</td>
<td>V5</td>
<td>V4</td>
<td>BYE</td>
<td>V3</td>
</tr>
<tr>
<td>3. BYE</td>
<td>BYE</td>
<td>V1</td>
<td>BYE</td>
<td>V5</td>
<td>BYE</td>
</tr>
<tr>
<td>4. BYE</td>
<td>V3</td>
<td>BYE</td>
<td>BYE</td>
<td>V1</td>
<td>V5</td>
</tr>
<tr>
<td>5. <%= @seed2.name %> <%= @seed2.season_win %>-<%= @seed2.season_loss %> <%= School.find(@seed2.school_id).name %></td>
<td>BYE</td>
<td>BYE</td>
<td>V1</td>
<td>BYE</td>
<td>BYE</td>
</tr>
</tbody>
</table>