In order to search the model from the UI some fields must be nominated as searchable.
Signed-off-by: Michael Wood <[email protected]> --- bitbake/lib/toaster/orm/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index 0ac94b9..0174233 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py @@ -1238,6 +1238,7 @@ class ProjectLayer(models.Model): unique_together = (("project", "layercommit"),) class CustomImageRecipe(models.Model): + search_allowed_fields = ['name'] name = models.CharField(max_length=100) base_recipe = models.ForeignKey(Recipe) packages = models.ManyToManyField(Package) -- 2.5.0 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
