diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-09 16:13:11 +0200 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-09 16:21:41 +0200 |
commit | 25f2adc502c0fca5a49fda7ea8dd5ceb15643c83 (patch) | |
tree | 33a21746c6f54217fcab108c661ff4afcc057ec1 /doc/invocations-http-server/templates/invocation.html | |
parent | f15e702f4ea877f60978bf03a2badfdabd65f362 (diff) | |
download | justbuild-25f2adc502c0fca5a49fda7ea8dd5ceb15643c83.tar.gz |
Invocation server: print invocation context
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 13 |
1 files changed, 13 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 %} |