Commit b6f77f6f by Vik Paruchuri

Fix rendering for flagged problems view

parent dd72297f
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
<th>Student ID</th> <th>Student ID</th>
<th>Student Response</th> <th>Student Response</th>
<th>Submission ID</th> <th>Submission ID</th>
<th>Location</th>
</tr> </tr>
%for problem in problem_list: %for problem in problem_list:
<tr> <tr>
...@@ -43,6 +44,9 @@ ...@@ -43,6 +44,9 @@
<td> <td>
${problem['submission_id']} ${problem['submission_id']}
</td> </td>
<td>
${problem['location']}
</td>
</tr> </tr>
%endfor %endfor
</table> </table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment