diff options
Diffstat (limited to 'doc/invocations-http-server/templates')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 13 | ||||
-rw-r--r-- | doc/invocations-http-server/templates/invocations.html | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index ed1c4410..78611f21 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -114,6 +114,19 @@ Inocations {{invocation | e}} </ul> </li> {% endif %} + {% if context %} + <li> Context: + <ul> + {% for entry in context %} + <li> <tt>{{ entry["key"] | e }}</tt> : + <a href="/filterinvocations/context/{{ entry["key_hex"] | e }}/{{ entry["value_hex"] }}"><tt>{{ entry["value"] | e }}</tt></a> + </li> + {% endfor %} + </ul> + </li> + {% else %} + <li> Context: <i>(none)</i> + {% endif %} {% if exit_code != None %} <li> Exit code: <tt>{{ exit_code | e }}</tt></li> {% endif %} diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html index 9d048453..dee5f46b 100644 --- a/doc/invocations-http-server/templates/invocations.html +++ b/doc/invocations-http-server/templates/invocations.html @@ -47,6 +47,11 @@ Recent Invocations Configuration: <tt>{{ invocation.config | e}}</tt> </li> {% endif %} + {% if invocation.context %} + <li> + Context: <tt>{{ invocation.context | e }}</tt> + </li> + {% endif %} </ul> </li> {% endfor %} |