From 662dc75254e25a326fa5657e3f5e8cc2d92eecfa Mon Sep 17 00:00:00 2001 From: jigold Date: Tue, 31 Oct 2023 16:25:10 -0400 Subject: [PATCH] [batch] Show attributes on the jobs UI page (#13948) Fixes #13914 --- batch/batch/front_end/templates/job.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/batch/batch/front_end/templates/job.html b/batch/batch/front_end/templates/job.html index 3b0c425c263..54cdae2ea9f 100644 --- a/batch/batch/front_end/templates/job.html +++ b/batch/batch/front_end/templates/job.html @@ -15,6 +15,13 @@

Properties

  • Cost: {% if 'cost' in job and job['cost'] is not none %}{{ job['cost'] }}{% endif %}
  • +

    Attributes

    +{% if 'attributes' in job %} +{% for name, value in job['attributes'].items() %} +

    {{ name }}: {{ value }}

    +{% endfor %} +{% endif %} +

    Cost Breakdown

    {% if job['cost_breakdown'] %}