Skip to content

Commit 98b83bf

Browse files
committed
Colon cleansing
1 parent 234f97f commit 98b83bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/templates/courses/course_detail.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@
126126
$(function() {
127127
{% for student in students %}
128128
$("#student{{student.pk}}").drawPieChart([
129-
{ value : {{ student.outcome.empty }}, color: "#A92D2D" },
130-
{ value: {{ student.outcome.invalid }}, color: "#D7A02C" },
131-
{ value : {{ student.outcome.valid }}, color: "#878F28" }
129+
{ value: {{ student.outcome.empty }}, color: "#A92D2D" },
130+
{ value: {{ student.outcome.invalid }}, color: "#D7A02C" },
131+
{ value: {{ student.outcome.valid }}, color: "#878F28" }
132132
]);
133133
{% endfor %}
134134
});

0 commit comments

Comments
 (0)