Skip to content

Commit

Permalink
fixed wrong order of submissions for tasks in admin panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ooemperor committed May 19, 2024
1 parent 982c3b3 commit c6aae7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codeGrader/frontend/admin/templates/task.html
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ <h2 class="accordion-header">
</th>
</tr>

{% for sub in submissions | sort(attribute='id') %}
{% for sub in submissions | sort(reverse=true, attribute='id') %}
<tr>
<td>
{{ sub["id"] }}
Expand Down

0 comments on commit c6aae7d

Please sign in to comment.