Skip to content

Commit

Permalink
Merge pull request #4988 from dodona-edu/fix/sequential-numbers
Browse files Browse the repository at this point in the history
Show submission numbers in evalution submission selection
  • Loading branch information
jorg-vr authored Sep 20, 2023
2 parents 7ba9ddd + e19e38d commit b2e640e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/views/feedbacks/_submissions_table.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<thead>
<tr>
<th class="status-column"></th>
<th>#</th>
<th><%= t "submissions.submissions_table.time" %></th>
<th><%= t "submissions.submissions_table.status" %></th>
<th><%= t "submissions.submissions_table.summary" %></th>
Expand All @@ -18,6 +19,9 @@
<i class="mdi mdi-comment-text-outline mdi-18 colored-secondary" data-bs-toggle="tooltip" data-bs-placement="top" title="<%= t('submissions.submissions_table.annotated') %>"></i>
<% end %>
</td>
<td>
<%= link_to "##{submission.number}", submission_path(submission), title: t("submissions.submission.view_solution") %>
</td>
<td>
<%= link_to (l submission.created_at, format: :submission), submission, title: t("submissions.submission.view_solution") %>
</td>
Expand Down

0 comments on commit b2e640e

Please sign in to comment.