From f8a1a6a4a2f585db5cb1f20aad540cdf75b389aa Mon Sep 17 00:00:00 2001 From: Sascha Roloff Date: Fri, 9 May 2025 20:00:56 +0200 Subject: Invocation server: add filter selector to overview page --- .../templates/invocations.html | 32 ++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) (limited to 'doc/invocations-http-server/templates') diff --git a/doc/invocations-http-server/templates/invocations.html b/doc/invocations-http-server/templates/invocations.html index 1417a3c4..a98babae 100644 --- a/doc/invocations-http-server/templates/invocations.html +++ b/doc/invocations-http-server/templates/invocations.html @@ -8,8 +8,36 @@ Recent Invocations

Invocations filtered by {{ filter_info | e }}

{% else %}

Recent Invocations

- -Filter: only not fully cached +Filter by: + only not fully cached + {% if context_filters %} +
+ Context + {% for entry in context_filters %} + {{ entry.key | e }}: + {% for value in entry["values"] %} + {% if loop.index > 1 %} + , + {% endif %} + {{ value["value"] | e }} + {% endfor %}
+ {% endfor %} +
+ {% endif %} + {% if remote_props_filters %} +
+ Remote properties + {% for entry in remote_props_filters %} + {{ entry.key | e }}: + {% for value in entry["values"] %} + {% if loop.index > 1 %} + , + {% endif %} + {{ value["value"] | e }} + {% endfor %}
+ {% endfor %} +
+ {% endif %} {% endif %} {% if invocations %}