diff options
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index b09ca0ac..bdcbb623 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -115,6 +115,15 @@ Inocations {{invocation | e}} </ul> {% if have_profile %} +{% if analysis_errors %} +<h2>Analysis errors</h2> +<ul> + {% for error in analysis_errors %} + <li> <pre>{{ error | e}}</pre></li> + {% endfor %} +</ul> +{% else %} +{% if exit_code == 1 or exit_code == 2 %} <h2>Failed actions</h2> {% if failed_actions %} <ul> @@ -141,6 +150,8 @@ In order of decreasing run time. {% else %} <i>(none)</i> {% endif %} +{% endif %} +{% endif %} {% else %} <b>No profiling data available; invocation data is not (yet) complete.</b> {% endif %} |