Show More
Commit Description:
updated db/schema.rb: removed unused tables
Commit Description:
updated db/schema.rb: removed unused tables
File last commit:
Show/Diff file:
Action:
app/views/main/_problem.html.erb | 18 lines | 571 B | text/plain | TextLexer |
<tr class="info-<%= (problem_counter%2==0) ? "even" : "odd" %>">
<td>
<%= "#{problem_counter+1}" %>
</td>
<td>
<%= "#{problem.full_name} (#{problem.name})" %>
<%= link_to_description_if_any "[#{t 'main.problem_desc'}]", problem %>
</td>
<td align="center">
<%= @prob_submissions[problem_counter][:count] %>
</td>
<td>
<%= render :partial => 'submission_short',
:locals => {
:submission => @prob_submissions[problem_counter][:submission],
:problem_name => problem.name }%>
</td>
</tr>