{% include 'project/details_operation_overlay.html' %}
{% macro displayAlgoGroupButtons(transient_group, category, launchAsync) -%} {% set groupName = transient_group.name %} {% set groupDescription = transient_group.description %} {% set algorithmsList = transient_group.children %} {% if groupName or groupDescription %}
{{ groupName }} - {{ groupDescription }}
{% endif %} {%- endmacro %}
{% if categories and 'Analyze' in categories %}
{% for transient_group in (categories['Analyze'] | sort(attribute='name')) %} {{ displayAlgoGroupButtons(transient_group, 'analyze', 'true') }} {% endfor %}
{% endif %}
{% if categories and 'View' in categories %}
{% for transient_group in (categories['View'] | sort(attribute='name')) %} {{ displayAlgoGroupButtons(transient_group, 'view', 'false') }} {% endfor %}
{% endif %}
{% if exporters %} {% else %} {% endif %}