Show More
Commit Description:
removed caching on Configuration...
Commit Description:
removed caching on Configuration
git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@285 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
app/views/problems/stat.rhtml
| 26 lines
| 680 B
| text/html+ruby
| RhtmlLexer
|
|
r0 | <h1>Problem stat: <%= @problem.name %></h1> | ||
<i>This is just a hack. Really not efficient.</i><br/><br/> | ||||
<% if @submissions!=nil %> | ||||
|
r57 | <table class="info"> | ||
<tr class="info-head"> | ||||
<th>user_id</th> | ||||
<th>submitted_at</th> | ||||
<th>points</th> | ||||
<th>comment</th> | ||||
</tr> | ||||
<% count = 0 %> | ||||
|
r0 | <% @submissions.each do |sub| %> | ||
|
r57 | <tr class="<%= (count % 2 ==0) ? "info-even" : "info-odd" %>"> | ||
|
r98 | <td><%= sub.user.full_name %></td> | ||
|
r0 | <td><%= sub.submitted_at.to_s %></td> | ||
<td><%= sub.points %></td> | ||||
<td><div style="font-family: monospace"><%= sub.grader_comment %></div></td> | ||||
</tr> | ||||
|
r57 | <% count += 1 %> | ||
|
r0 | <% end %> | ||
</table> | ||||
<% else %> | ||||
No submission | ||||
<% end %> | ||||