mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
8020b06f45
Tweaked layout for contest page Various styling updates
30 lines
1.2 KiB
Text
30 lines
1.2 KiB
Text
<table id="matches" class="striped">
|
|
<tr>
|
|
<th>Date and Time</th>
|
|
<th>Contest</th>
|
|
<th>Team 1</th>
|
|
<th>Team 2</th>
|
|
<th>Maps</th>
|
|
<th>Predictions</th>
|
|
<th>Score</th>
|
|
</tr>
|
|
<% matches.each do |match| %>
|
|
<tr class="<%=cycle('even', 'odd') %>">
|
|
<td><%= shorttime match.match_time%></td>
|
|
<td><%= link_to match.contest.short_name, :controller => :contests, :action => :show, :id => match.contest.id %></td>
|
|
<td><%= link_to match.contester1.team.tag, :controller => :contesters, :action => :show, :id => match.contester1 %></td>
|
|
<td><%= link_to match.contester2.team.tag, :controller => :contesters, :action => :show, :id => match.contester2 %></td>
|
|
<td><% if match.map1 and match.map2 %>
|
|
<%= link_to match.map1, :controller => :maps, :action => :show, :id => match.map1 %>,
|
|
<%= link_to match.map2, :controller => :maps, :action => :show, :id => match.map2 %>
|
|
<% end %>
|
|
</td>
|
|
<td><%= match.preds(1) %>% - <%= match.preds(2) %>%</td>
|
|
<td>
|
|
<%= link_to match, :class => "bold #{match.score_color}" do %>
|
|
<%= h match.score1 %> - <%= h match.score2 %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|