{% import 'project/pagination.html' as pag %}
{% macro displayOperationResults(operation_row) -%}
{% if operation_row['datatype_group_gid'] is not none or operation_row['results'] | length > 10 %}
{% endif %}
{% if operation_row['results'] is not none and operation_row['results'] | length < 10 %}
{% for result in operation_row['results'] %}
{% if not result.invalid and not result.is_nan and result.visible %}
{% endif %}
{% endfor %}
{% for result in operation_row['results'] %}
{% if result.invalid or result.is_nan %}
{% endif %}
{% endfor %}