summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/views.py
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2015-09-29 08:15:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-29 14:11:38 +0100
commitd48b7ef607372488c1bf50762e4ca21773bf1e9a (patch)
tree6a78925e8d9accc14654e36a78e65ca3f3a9cf43 /bitbake/lib/toaster/toastergui/views.py
parentf902dc646dbfdf31fded69a425fb88944a7d8fe3 (diff)
downloadpoky-d48b7ef607372488c1bf50762e4ca21773bf1e9a.tar.gz
bitbake: toaster: display most recent builds for projects
Display the most recent builds in the given project's build page. [YOCTO #8186] (Bitbake rev: ce9a7f1819a1897878ce154b3ee7e727a76165b0) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/views.py')
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index b7eddf411d..9f16e8f76f 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -2904,6 +2904,9 @@ if True:
2904 context['project'] = prj 2904 context['project'] = prj
2905 _set_parameters_values(pagesize, orderby, request) 2905 _set_parameters_values(pagesize, orderby, request)
2906 2906
2907 # add the most recent builds for this project
2908 context['mru'] = _get_latest_builds(prj)
2909
2907 return context 2910 return context
2908 2911
2909 2912