{% extends "base.html" %} {% block heading %} Invocation {{invocation | e}} {% endblock %} {% from 'macros.html' import show_action %} {% block content %}

Invocation {{invocation | e}}

(all invocations)

Overview

{% if have_profile %} {% if analysis_errors %}

Analysis errors

{% else %} {% if exit_code == 0 or exit_code == 1 or exit_code == 2 %}

Actions

Failed actions ({{ failed_actions_count | e }})

{% if failed_actions %} {% else %} (none) {% endif %}

Other actions with console output ({{ output_actions_count | e }})

{% if output_actions %} {% else %} (none) {% endif %}

Remaining non-cached actions ({{ non_cached_count | e}})

{% if non_cached %} In order of decreasing run time. {% else %} (none) {% endif %} {% endif %} {% endif %} {% else %} No profiling data available; invocation data is not (yet) complete. {% endif %} {% endblock %}