diff --git a/app/templates/views/check.html b/app/templates/views/check.html index 37db226d8..255a84dfd 100644 --- a/app/templates/views/check.html +++ b/app/templates/views/check.html @@ -97,7 +97,15 @@ {% if count_of_displayed_recipients < count_of_recipients %}
- {{ count_of_recipients - count_of_displayed_recipients }} {{ "row" if 1 == (count_of_recipients - count_of_displayed_recipients) else "rows"}} not shown + {% if rows_have_errors %} + Only showing the first {{ count_of_displayed_recipients }} rows with errors + {% else %} + Only showing the first {{ count_of_displayed_recipients }} rows + {% endif %} +
+ {% elif rows_have_errors %} ++ Only showing rows with errors
{% endif %}