diff options
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index 50d5690a..2ebebb86 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -38,6 +38,12 @@ Inocations {{invocation | e}} </ul> </li> {% endif %} + {% if action["duration"] %} + <li> duration: {{ action["duration"] | e }}</li> + {% endif %} + {% if action["cached"] %} + <li> cached: {{ action["cached"] | e }}</li> + {% endif %} {% if action["exit_code"] != 0 %} <li> exit code: {{ action["exit_code"] }}</li> {% endif %} @@ -187,6 +193,17 @@ Inocations {{invocation | e}} <i>(none)</i> {% endif %} +<h3>Other actions with console output</h3> +{% if output_actions %} +<ul> + {% for action in output_actions %} + {{ show_action(action) }} + {% endfor %} +</ul> +{% else %} +<i>(none)</i> +{% endif %} + <h3>Remaining non-cached actions</h3> {% if non_cached %} |