diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rwxr-xr-x | bitbake/lib/toaster/toastergui/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
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), |