{% extends 'templates/base_assessment_tag.html' %} {% block question %}
{% if displayed_weight == 1 %} {# I18N: Displayed next to a question. Indicates that the question is worth 1 point. #} {{ gettext('1 point') }} {% else %} {# I18N: Displayed next to a question to indicate its point value. In this particular message, the number of points will be plural. #} {{ gettext('%(points)s points', points=displayed_weight) }} {% endif %}
{{ question | safe }}
{% for choice in choices %}
{% endfor %}
{% if not embedded %}
{% endif %}
{% endblock question %}