mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
13 lines
No EOL
453 B
Text
13 lines
No EOL
453 B
Text
<h1 class="title">Confirmed Matches for <%= @contest.name %></h1>
|
|
<table class="striped">
|
|
<tr>
|
|
<th>Match</th>
|
|
<th>Scheduled for</th>
|
|
</tr>
|
|
<% @match_props && @match_props.each do |mp| %>
|
|
<tr>
|
|
<th><%= link_to mp.match.contester1, contester_path(mp.match.contester1) %> VS <%= link_to mp.match.contester2, contester_path(mp.match.contester2) %></th>
|
|
<th><%= longertime(mp.proposed_time) %></th>
|
|
</tr>
|
|
<% end %>
|
|
</table> |