From aea1ddebf83685e4c46b65edd877fec3bab62c4a Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Fri, 6 Jun 2025 12:28:39 +0200 Subject: Invocation server: directly show only artifact When presenting a build, the output artifacts are hidden behind a "details" environment to not overload the user with long list of, e.g., test results (especially if generated by a test matrix). If, however, only a single artifact is built, there is no reason to hide it; so simply show it. --- doc/invocations-http-server/templates/invocation.html | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc/invocations-http-server/templates') diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index bd5915b1..2a5cc136 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -91,8 +91,13 @@ Invocation {{invocation | e}} {% endif %} {% if artifacts %}
  • + {% if artifacts_count == 1 %} +
    + artifact + {% else %}
    {{ artifacts_count | e }} artifacts + {% endif %}
      {% for entry in artifacts %}
    • -- cgit v1.2.3