diff --git a/opentech/apply/users/templates/users/change_password.html b/opentech/apply/users/templates/users/change_password.html index efde07945c4e191b54424e3b0ee5a9e3da9826b1..7c17079cba4b01ae7c3a7867037c464e0b6382da 100644 --- a/opentech/apply/users/templates/users/change_password.html +++ b/opentech/apply/users/templates/users/change_password.html @@ -17,7 +17,11 @@ {% if form.errors %} <div class="messages"> - {% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %} + {% blocktrans count counter=form.errors.items|length %} + Please correct the error below. + {% plural %} + Please correct the errors below. + {% endblocktrans %} </div> {% endif %}