diff options
Diffstat (limited to 'doc/invocations-http-server/templates/failure.html')
-rw-r--r-- | doc/invocations-http-server/templates/failure.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/failure.html b/doc/invocations-http-server/templates/failure.html new file mode 100644 index 00000000..30892281 --- /dev/null +++ b/doc/invocations-http-server/templates/failure.html @@ -0,0 +1,24 @@ +{% extends "base.html" %} +{% block heading %} +Failure calling an external process +{% endblock %} + +{% block content %} +<h1>Failure calling an external process</h1> + +<ul> + {% if failure_kind %} + <li> <b>{{ failure_kind | e }}</b></li> + {% endif %} + <li> Command: <tt>{{ cmd|e }}</tt></li> + <li> exit code: <tt>{{ exit_code|e }}</tt></li> + {% if stdout %} + <li> stdout: + <pre>{{ stdout | e }}</pre></li> + {% endif %} + {% if stderr %} + <li> stderr: + <pre>{{ stderr | e }}</pre></li> + {% endif %} +</ul> +{% endblock %} |