diff --git a/src/static/riot/competitions/detail/leaderboards.tag b/src/static/riot/competitions/detail/leaderboards.tag
index 0617a38ea..fdb5be8cd 100644
--- a/src/static/riot/competitions/detail/leaderboards.tag
+++ b/src/static/riot/competitions/detail/leaderboards.tag
@@ -28,7 +28,7 @@
| Task: |
- |
+ |
{ task.name } |
@@ -36,6 +36,7 @@
| Participant |
Entries |
Date |
+ ID |
{column.title} |
@@ -59,6 +60,7 @@
{ submission.organization.name } |
{submission.num_entries} |
{submission.created_when} |
+ {submission.id} |
diff --git a/src/tests/functional/test_submissions.py b/src/tests/functional/test_submissions.py
index 2beba29f1..86816780d 100644
--- a/src/tests/functional/test_submissions.py
+++ b/src/tests/functional/test_submissions.py
@@ -73,7 +73,7 @@ def _run_submission_and_add_to_leaderboard(self, competition_zip_path, submissio
# The leaderboard table lists our submission
prediction_score = Submission.objects.get(pk=submission_id).scores.first().score
- assert Decimal(self.find('leaderboards table tbody tr:nth-of-type(1) td:nth-of-type(5)').text) == round(Decimal(prediction_score), precision)
+ assert Decimal(self.find('leaderboards table tbody tr:nth-of-type(1) td:nth-of-type(6)').text) == round(Decimal(prediction_score), precision)
def test_v15_iris_result_submission_end_to_end(self):
self._run_submission_and_add_to_leaderboard('competition_15_iris.zip', 'submission_15_iris_result.zip', '======= Set 1 (Iris_test)', has_solutions=False, precision=4)
|