From 1f83c7fca87851a97484b68b25d0c6a88db053af Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Thu, 20 Feb 2014 01:20:47 +0000 Subject: bitbake: toaster: Move outside for statement In the package details pages, the tags where inside the for statements, which caused multiple tags to be generated inside a single table. To make sure only one tag exists per table, moving the tag outside the for statement. (Bitbake rev: 0c111b24e9f86130bc43c1327a6d12026e92cdf2) Signed-off-by: Belen Barros Pena Signed-off-by: Richard Purdie --- .../lib/toaster/toastergui/templates/package_included_detail.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bitbake/lib/toaster/toastergui/templates/package_included_detail.html') diff --git a/bitbake/lib/toaster/toastergui/templates/package_included_detail.html b/bitbake/lib/toaster/toastergui/templates/package_included_detail.html index 018de3eb42..af56b21b1e 100644 --- a/bitbake/lib/toaster/toastergui/templates/package_included_detail.html +++ b/bitbake/lib/toaster/toastergui/templates/package_included_detail.html @@ -20,8 +20,8 @@ Size - {% for file in package.buildfilelist_package.all|dictsort:"path" %} - + + {% for file in package.buildfilelist_package.all|dictsort:"path" %} @@ -30,8 +30,8 @@ {{file.size|filtered_filesizeformat}} - - {% endfor %} + {% endfor %} + {% else %} -- cgit v1.2.3-54-g00ecf