diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index af44d86ff3..24d8d9c573 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py @@ -80,7 +80,7 @@ class Task(models.Model): (SSTATE_NA, 'Not Applicable'), # For rest of tasks, but they still need checking. (SSTATE_MISS, 'Missing'), # it is a miss (SSTATE_FAILED, 'Failed'), # there was a pkg, but the script failed - (SSTATE_RESTORED, 'Restored'), # succesfully restored + (SSTATE_RESTORED, 'Succeeded'), # successfully restored ) CODING_NA = 0 @@ -111,7 +111,7 @@ class Task(models.Model): (OUTCOME_EMPTY, 'Empty'), ) - search_allowed_fields = [ "recipe__name", "task_name" ] + search_allowed_fields = [ "recipe__name", "recipe__version", "task_name", "logfile" ] objects = TaskManager() diff --git a/bitbake/lib/toaster/toastergui/templates/basetable_top.html b/bitbake/lib/toaster/toastergui/templates/basetable_top.html index 9a8bacb384..fe534618d1 100644 --- a/bitbake/lib/toaster/toastergui/templates/basetable_top.html +++ b/bitbake/lib/toaster/toastergui/templates/basetable_top.html @@ -31,7 +31,7 @@