Commit feb155b0 by gradyward

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

parent bde2b6e6
...@@ -12,7 +12,11 @@ ...@@ -12,7 +12,11 @@
<option value={{ option.name }} <option value={{ option.name }}
{% if criterion.option_selected == option.name %} selected {% endif %} {% if criterion.option_selected == option.name %} selected {% endif %}
> >
{% if option.points == 1 %}
{{ option.label }} - {{ option.points }} {% trans "point" %}
{% else %}
{{ option.label }} - {{ option.points }} {% trans "points" %} {{ option.label }} - {{ option.points }} {% trans "points" %}
{% endif %}
</option> </option>
{% endfor %} {% endfor %}
</select> </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