diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-09 12:26:12 +0200 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-09 16:21:41 +0200 |
commit | 3ba76e21f14d764e283824c36e93b939dae2e860 (patch) | |
tree | aaa38b9c4b7778116613491f984e024eee9c50ba /doc/invocations-http-server | |
parent | 86bbe5ef247dd4c9b4fc051863b477cff3ec799a (diff) | |
download | justbuild-3ba76e21f14d764e283824c36e93b939dae2e860.tar.gz |
Invocation server: split invocation overview information into several lines
Diffstat (limited to 'doc/invocations-http-server')
-rw-r--r-- | doc/invocations-http-server/templates/invocations.html | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html index 7cc27f2d..9d048453 100644 --- a/doc/invocations-http-server/templates/invocations.html +++ b/doc/invocations-http-server/templates/invocations.html @@ -16,11 +16,8 @@ Recent Invocations {% if invocation.subcommand %} <tt>{{ invocation.subcommand | e }}</tt> {% endif %} - {% if invocation.remote_address %} - (on <tt>{{ invocation.remote_address | e }}@{{ invocation.remote_props | e }}</tt>) - {% endif %} {% if invocation.target %} - <tt>{{ invocation.target | e}}@{{ invocation.config | e}}</tt> + <tt>{{ invocation.target | e}}</tt> {% endif %} {% if invocation.exit_code != 0 %} <b> @@ -39,6 +36,18 @@ Recent Invocations {% endif %} </b> {% endif %} + <ul> + {% if invocation.remote_address %} + <li> + Remote: <tt>{{ invocation.remote_address | e }}@{{ invocation.remote_props | e }}</tt> + </li> + {% endif %} + {% if invocation.config %} + <li> + Configuration: <tt>{{ invocation.config | e}}</tt> + </li> + {% endif %} + </ul> </li> {% endfor %} </ul> |