Skip to content

Commit

Permalink
Merge pull request #215 from jnywong/patch-table-column
Browse files Browse the repository at this point in the history
Fix table td ordering
  • Loading branch information
jnywong authored Nov 26, 2024
2 parents a824c58 + f2c4c6e commit de29d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frx_challenges/web/templates/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ <h1>Leaderboard</h1>
<tbody>
{% for result in results %}
<tr>
<td>{{ result.submission.created_at|date:"c" }}</td>
<td>
<a href='{% url "submissions-detail" result.submission.id %}'>{{ result.submission.name }}</a>
</td>
{% for m in result.metadata %}<td>{{ m }}</td>{% endfor %}
<td>{{ result.submission.created_at|date:"c" }}</td>
{% for r in result.best_version.latest_evaluation.ordered_results %}
<td scope="col">
{% if r %}{{ r }}{% endif %}
Expand Down

0 comments on commit de29d5d

Please sign in to comment.