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