Description:
[web] show full_name in problems/stat git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@187 6386c4cd-e34a-4fa8-8920-d93eb39b512e
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r98:f4a25aa9faf4 - - 1 file changed: 1 inserted, 1 deleted

@@ -4,23 +4,23
4
4
5 <% if @submissions!=nil %>
5 <% if @submissions!=nil %>
6 <table class="info">
6 <table class="info">
7 <tr class="info-head">
7 <tr class="info-head">
8 <th>user_id</th>
8 <th>user_id</th>
9 <th>submitted_at</th>
9 <th>submitted_at</th>
10 <th>points</th>
10 <th>points</th>
11 <th>comment</th>
11 <th>comment</th>
12 </tr>
12 </tr>
13 <% count = 0 %>
13 <% count = 0 %>
14 <% @submissions.each do |sub| %>
14 <% @submissions.each do |sub| %>
15 <tr class="<%= (count % 2 ==0) ? "info-even" : "info-odd" %>">
15 <tr class="<%= (count % 2 ==0) ? "info-even" : "info-odd" %>">
16 - <td><%= sub.user_id %></td>
16 + <td><%= sub.user.full_name %></td>
17 <td><%= sub.submitted_at.to_s %></td>
17 <td><%= sub.submitted_at.to_s %></td>
18 <td><%= sub.points %></td>
18 <td><%= sub.points %></td>
19 <td><div style="font-family: monospace"><%= sub.grader_comment %></div></td>
19 <td><div style="font-family: monospace"><%= sub.grader_comment %></div></td>
20 </tr>
20 </tr>
21 <% count += 1 %>
21 <% count += 1 %>
22 <% end %>
22 <% end %>
23 </table>
23 </table>
24 <% else %>
24 <% else %>
25 No submission
25 No submission
26 <% end %>
26 <% end %>
You need to be logged in to leave comments. Login now