Fix rendering for flagged problems view

This commit is contained in:
Vik Paruchuri
2013-01-30 20:43:57 -05:00
parent dd72297f73
commit b6f77f6f8e

View File

@@ -28,6 +28,7 @@
<th>Student ID</th>
<th>Student Response</th>
<th>Submission ID</th>
<th>Location</th>
</tr>
%for problem in problem_list:
<tr>
@@ -43,6 +44,9 @@
<td>
${problem['submission_id']}
</td>
<td>
${problem['location']}
</td>
</tr>
%endfor
</table>