mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 12:30:48 +00:00
13 lines
No EOL
519 B
Text
13 lines
No EOL
519 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 class="<%= cycle('even', 'odd') %>">
|
|
<td><%= link_to mp.match.contester1, contester_path(mp.match.contester1) %> VS <%= link_to mp.match.contester2, contester_path(mp.match.contester2) %></td>
|
|
<td><%= link_to longertime(mp.proposed_time), match_path(mp.match) %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table> |