1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/app/views/static_pages/up_matches.html.erb

35 lines
697 B
Plaintext

<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}" %>
<script>
$(document).ready(function() {
$('#matchList').dataTable();
} );
</script>
<br>
<br>
<h3>Upcoming Matches</h3>
<br>
<br>
<table class="display compact cell-border" id="matchList">
<thead>
<tr>
<th>Round</th>
<th>Bout Number</th>
<th>Weight Class</th>
<th>Matchup</th>
</tr>
</thead>
<tbody>
<% @matches.each.map do |m| %>
<tr>
<td>Round <%= m.round %></td>
<td><%= m.bout_number %></td>
<td><%= m.weight_max %> lbs</td>
<td><%= m.w1_name %> vs. <%= m.w2_name %></td>
</tr>
<% end %>
</tbody>
</table>
<br>