diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-09 17:18:13 +0200 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2025-05-12 10:49:25 +0200 |
commit | 1152f08e7226be6862aceafe386d933d2adeead6 (patch) | |
tree | f80bcbbe29429636c1390a21b6448c71f4c186fd /doc/invocations-http-server | |
parent | 7afe1ea1245bf48a01016618759319d211588545 (diff) | |
download | justbuild-1152f08e7226be6862aceafe386d933d2adeead6.tar.gz |
Invocation server: also for action-artifacts, offer a download link
Diffstat (limited to 'doc/invocations-http-server')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index 22c23e43..c8d77f58 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -46,7 +46,10 @@ Inocations {{invocation | e}} <ul> {% for out in action["output"] %} {% if action["artifacts"].get(out) %} - <li> <a href="/blob/{{ action["artifacts"].get(out) | e}}"><tt>{{ out | e }}</tt></a></li> + <li> + <a href="/blob/{{ action["artifacts"].get(out) | e}}"><tt>{{ out | e }}</tt></a> + <a href="/blob/{{ action["artifacts"].get(out) | e}}/{{ out | e}}"><tt>[↓]</tt></a> + </li> {% else %} <li> <tt>{{ out | e }}</tt></li> {% endif %} |