diff options
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> |