Commit feb155b0 by gradyward

Changed the Student Training Example Authoring Interface to correctly use "Point" vs "Points"

parent bde2b6e6
......@@ -12,7 +12,11 @@
<option value={{ option.name }}
{% if criterion.option_selected == option.name %} selected {% endif %}
>
{{ option.label }} - {{ option.points }} {% trans "points" %}
{% if option.points == 1 %}
{{ option.label }} - {{ option.points }} {% trans "point" %}
{% else %}
{{ option.label }} - {{ option.points }} {% trans "points" %}
{% endif %}
</option>
{% endfor %}
</select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment