We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 234f97f commit 98b83bfCopy full SHA for 98b83bf
web/templates/courses/course_detail.html
@@ -126,9 +126,9 @@
126
$(function() {
127
{% for student in students %}
128
$("#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" }
+ { value: {{ student.outcome.empty }}, color: "#A92D2D" },
+ { value: {{ student.outcome.invalid }}, color: "#D7A02C" },
+ { value: {{ student.outcome.valid }}, color: "#878F28" }
132
]);
133
{% endfor %}
134
});
0 commit comments