summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/base.js4
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/base.js b/bitbake/lib/toaster/toastergui/static/js/base.js
index e0df463979..895e61b2aa 100644
--- a/bitbake/lib/toaster/toastergui/static/js/base.js
+++ b/bitbake/lib/toaster/toastergui/static/js/base.js
@@ -57,8 +57,8 @@ function basePageInit(ctx) {
57 57
58 if ($(".total-builds").length !== 0){ 58 if ($(".total-builds").length !== 0){
59 libtoaster.getProjectInfo(libtoaster.ctx.projectPageUrl, function(prjInfo){ 59 libtoaster.getProjectInfo(libtoaster.ctx.projectPageUrl, function(prjInfo){
60 if (prjInfo.builds) 60 if (prjInfo.completedbuilds)
61 $(".total-builds").text(prjInfo.builds.length); 61 $(".total-builds").text(prjInfo.completedbuilds.length);
62 }); 62 });
63 } 63 }
64 64
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index 45a5611724..67c84b2934 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -2263,7 +2263,7 @@ if True:
2263 context = { 2263 context = {
2264 "project" : prj, 2264 "project" : prj,
2265 "lvs_nos" : Layer_Version.objects.all().count(), 2265 "lvs_nos" : Layer_Version.objects.all().count(),
2266 "completedbuilds": Build.objects.filter(project_id = pid).filter(outcome__lte = Build.IN_PROGRESS), 2266 "completedbuilds": Build.objects.exclude(outcome = Build.IN_PROGRESS).filter(project_id = pid),
2267 "prj" : {"name": prj.name, }, 2267 "prj" : {"name": prj.name, },
2268 "buildrequests" : prj.build_set.filter(outcome=Build.IN_PROGRESS), 2268 "buildrequests" : prj.build_set.filter(outcome=Build.IN_PROGRESS),
2269 "builds" : _project_recent_build_list(prj), 2269 "builds" : _project_recent_build_list(prj),