diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-03-14 23:19:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-25 11:17:33 +0000 |
commit | 0525edb25c875e32548fcc869cc4490f917581ba (patch) | |
tree | f86a6346001811674fb0f4ab2577c8e812b624c0 /bitbake/lib/toaster/toastergui/views.py | |
parent | ef1063610a82c52ab2bdd4466d3c6f2042b75262 (diff) | |
download | poky-0525edb25c875e32548fcc869cc4490f917581ba.tar.gz |
bitbake: toaster: Change objectname 'packages' to 'packages built'
This will set the placeholder attribute of the search input
field in bpackage.html to the required "Search packages
built".
[YOCTO #5977]
(Bitbake rev: 841a086822a3fa740b5651938aee6a42eba58409)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rw-r--r-- | bitbake/lib/toaster/toastergui/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index eaa6cf8c5f..a4bd9d62ba 100644 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
@@ -1111,7 +1111,7 @@ def bpackage(request, build_id): | |||
1111 | packages = _build_page_range(Paginator(queryset, request.GET.get('count', 100)),request.GET.get('page', 1)) | 1111 | packages = _build_page_range(Paginator(queryset, request.GET.get('count', 100)),request.GET.get('page', 1)) |
1112 | 1112 | ||
1113 | context = { | 1113 | context = { |
1114 | 'objectname': 'packages', | 1114 | 'objectname': 'packages built', |
1115 | 'build': Build.objects.filter(pk=build_id)[0], | 1115 | 'build': Build.objects.filter(pk=build_id)[0], |
1116 | 'objects' : packages, | 1116 | 'objects' : packages, |
1117 | 'tablecols':[ | 1117 | 'tablecols':[ |