From 192583a91e17b15da4668dbacee035def1d68b0c Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Thu, 5 Dec 2013 14:20:36 +0000 Subject: bitbake: toaster: add pagination to the Simple UI In an effort to make the Simple UI more usable and reponsive, this patch adds pagination support for the pages with lots of entries: Builds, Configuration and Tasks. (Bitbake rev: d4f075c050ad9ecebe750420d49961a7f30d090b) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/lib/toaster/bldviewer/templates/bpackage.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitbake/lib/toaster/bldviewer/templates/bpackage.html') diff --git a/bitbake/lib/toaster/bldviewer/templates/bpackage.html b/bitbake/lib/toaster/bldviewer/templates/bpackage.html index 07d079298e..67fc65ca3e 100644 --- a/bitbake/lib/toaster/bldviewer/templates/bpackage.html +++ b/bitbake/lib/toaster/bldviewer/templates/bpackage.html @@ -2,7 +2,7 @@ {% block pagetitle %}Packages{% endblock %} {% block pagetable %} - {% if not packages %} + {% if not objects %}

No packages were recorded for this target!

{% else %} @@ -18,12 +18,12 @@ Dependencies List (all) - {% for package in packages %} + {% for package in objects %} {{package.name}} ({{package.filelist_bpackage.count}} files) {{package.version}}-{{package.revision}} - {{package.recipe.name}}{{package.package_name}} + {%if package.recipe%}{{package.recipe.name}}{{package.package_name}}{%endif%} {{package.summary}} {{package.section}} -- cgit v1.2.3-54-g00ecf