diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py index 6c167a9f4d..ecca22037a 100644 --- a/bitbake/lib/toaster/toastergui/tables.py +++ b/bitbake/lib/toaster/toastergui/tables.py @@ -507,14 +507,20 @@ class CustomImagesTable(ToasterTable): static_data_name="name", static_data_template=name_link_template) + recipe_file_template = ''' + {{data.name}}_{{data.version}}.bb + + + ''' + self.add_column(title="Recipe file", - static_data_name='recipe_file', - static_data_template='', - field_name='local_path') + static_data_name='recipe_file_download', + static_data_template=recipe_file_template) approx_packages_template = ''' - {{data.package_set.all|length}} + {{data.get_all_packages.count}} ''' self.add_column(title="Approx packages",