diff options
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index a499c30b62..7f61ade9c8 100644 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
| @@ -356,7 +356,8 @@ def builddashboard(request, build_id): | |||
| 356 | return redirect(builds) | 356 | return redirect(builds) |
| 357 | context = { | 357 | context = { |
| 358 | 'build' : Build.objects.filter(pk=build_id)[0], | 358 | 'build' : Build.objects.filter(pk=build_id)[0], |
| 359 | 'recipecount' : Recipe.objects.filter(layer_version__id__in=Layer_Version.objects.filter(build=build_id)).count() | 359 | 'recipecount' : Recipe.objects.filter(layer_version__id__in=Layer_Version.objects.filter(build=build_id)).count(), |
| 360 | 'logmessages' : LogMessage.objects.filter(build=build_id), | ||
| 360 | } | 361 | } |
| 361 | return render(request, template, context) | 362 | return render(request, template, context) |
| 362 | 363 | ||
