From c60d8b194dc54f456f69c93f63308b7c4f01180c Mon Sep 17 00:00:00 2001 From: David Moreau Simard Date: Mon, 15 Jun 2020 12:06:02 -0400 Subject: [PATCH] UI: Re-order result columns when viewing playbook details This moves the more important information on the left. Change-Id: I0be9519ff1171432ff716b2b50edb95dd24da399 --- ara/ui/templates/playbook.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/ara/ui/templates/playbook.html b/ara/ui/templates/playbook.html index 4c3f43db..8443131c 100644 --- a/ara/ui/templates/playbook.html +++ b/ara/ui/templates/playbook.html @@ -105,15 +105,15 @@ Status - - Date - + Host + Task + Action Duration - Task - Action - Host + + Date + @@ -124,11 +124,8 @@ {% include "partials/result_status_icon.html" with status=result.status %} - - {{ result.started | format_date }} - - - {{ result.duration | format_duration }} + + {{ result.host.name }} {{ task.name }} @@ -136,8 +133,11 @@ {{ task.action }} - - {{ result.host.name }} + + {{ result.duration | format_duration }} + + + {{ result.started | format_date }} {% endfor %}