diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 8e40f0aca2..048399f34d 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py @@ -449,18 +449,13 @@ class Build(models.Model): break return has_images - def has_image_targets(self): + def has_image_recipes(self): """ Returns True if a build has any targets which were built from image recipes. """ - targets = Target.objects.filter(build_id=self.id) - has_image_targets = False - for target in targets: - if target.is_image: - has_image_targets = True - break - return has_image_targets + image_recipes = self.get_image_recipes() + return len(image_recipes) > 0 def get_image_file_extensions(self): """ diff --git a/bitbake/lib/toaster/toastergui/templates/basebuildpage.html b/bitbake/lib/toaster/toastergui/templates/basebuildpage.html index 8d7c562640..eb709bbd43 100644 --- a/bitbake/lib/toaster/toastergui/templates/basebuildpage.html +++ b/bitbake/lib/toaster/toastergui/templates/basebuildpage.html @@ -117,7 +117,7 @@ {% endwith %} - {% if build.has_image_targets %} + {% if build.has_image_recipes %} {% include 'newcustomimage_modal.html' %}