From 476e78a87b5b8e0cbfff359e35bc9e5aac2ebb08 Mon Sep 17 00:00:00 2001 From: Evan Zhang Date: Sat, 5 Jan 2019 05:01:16 +0800 Subject: [PATCH] Fix space before commas for administrator judge list; #78 (cherry picked from commit 3953111e9f435eda660925bfa3f06fef3a27ce39) --- templates/problem/problem.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/problem/problem.html b/templates/problem/problem.html index ddd62f35e5..c59ee1071d 100644 --- a/templates/problem/problem.html +++ b/templates/problem/problem.html @@ -216,7 +216,7 @@

{{ title }}

{% if perms.judge.change_judge %} {% for judge in available_judges %} {{ judge.name }} - {% if not loop.last %}, {% endif %} + {%- if not loop.last %}, {% endif %} {% endfor %} {% else %} {{ available_judges|join(", ") }}