diff options
Diffstat (limited to 'doc/invocations-http-server/templates')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 4 | ||||
-rw-r--r-- | doc/invocations-http-server/templates/invocations.html | 11 |
2 files changed, 14 insertions, 1 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index c7cba837..a155e9e1 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -115,7 +115,9 @@ Inocations {{invocation | e}} </li> {% endif %} {% if target %} - <li> Target: <tt>{{ target | e }}</tt></li> + <li> Target: + <a href="/filterinvocations/target/{{ target["value_hex"] | e }}"><tt>{{ target["value"] | e }}</tt></a> + </li> {% endif %} {% if config %} <li> Target configuration: <tt>{{ config | e }}</tt></li> diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html index 18f90129..607b9a7a 100644 --- a/doc/invocations-http-server/templates/invocations.html +++ b/doc/invocations-http-server/templates/invocations.html @@ -49,6 +49,17 @@ Filter by: {% endfor %} </details> {% endif %} + {% if target_filters %} + <details> + <summary>Target</summary> + {% for entry in target_filters %} + {% if loop.index > 1 %} + , + {% endif %} + <a href="/filterinvocations/target/{{ entry["value_hex"] | e }}"><tt>{{ entry["value"] | e }}</tt></a> + {% endfor %} + </details> + {% endif %} {% endif %} {% if full_invocations %} <div id="invocation-list"> |