From 67ce1ce3cbfa1977761ad668bdd548e7389211c3 Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Sun, 18 Sep 2016 19:33:13 -0700 Subject: bitbake: toaster: Fix links to tasks with specific outcome The build dashboard provides a count of tasks that were executed and not executed, and of tasks that failed (if any). The number is a link to the list of tasks. Fix the links so that they filter the tasks table by the selected criteria (executed, not executed or failed). [YOCTO #9832] (Bitbake rev: a75e70bbc9081f77f1e4aeeee8222b06112e4406) Signed-off-by: Belen Barros Pena Signed-off-by: bavery Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/templates/builddashboard.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitbake/lib/toaster') diff --git a/bitbake/lib/toaster/toastergui/templates/builddashboard.html b/bitbake/lib/toaster/toastergui/templates/builddashboard.html index 9e6e1c172b..1c390cd603 100644 --- a/bitbake/lib/toaster/toastergui/templates/builddashboard.html +++ b/bitbake/lib/toaster/toastergui/templates/builddashboard.html @@ -235,7 +235,7 @@ {% elif exectask.count > 1%} - {{exectask.count}} + {{exectask.count}} {% endif %} {% endif %} @@ -244,12 +244,12 @@ Tasks executed -
{% query build.task_build task_executed=1 order__gt=0 as exectask%}{{exectask.count}}
+
{% query build.task_build task_executed=1 order__gt=0 as exectask%}{{exectask.count}}
Tasks not executed
-
{% query build.task_build task_executed=0 order__gt=0 as noexectask%}{{noexectask.count}}
+
{% query build.task_build task_executed=0 order__gt=0 as noexectask%}{{noexectask.count}}
Reuse -- cgit v1.2.3-54-g00ecf