Skip to content

Commit

Permalink
Fix td ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
jnywong committed Nov 26, 2024
1 parent a824c58 commit f2c4c6e
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 f2c4c6e

Please sign in to comment.