Skip to content

Commit

Permalink
Fix space before commas for administrator judge list; DMOJ#78
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjaclasher authored and outloudvi committed Jan 12, 2019
1 parent d8a0ded commit 5f66974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/problem/problem.html
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ <h2 style="color:#393630; display: inline-block">{{ title }}</h2>
{% if perms.judge.change_judge %}
{% for judge in available_judges %}
<a href="{{ url('admin:judge_judge_change', judge.id) }}">{{ judge.name }}</a>
{% if not loop.last %}, {% endif %}
{%- if not loop.last %}, {% endif %}
{% endfor %}
{% else %}
{{ available_judges|join(", ") }}
Expand Down

0 comments on commit 5f66974

Please sign in to comment.