summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-20 01:20:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 13:59:36 +0000
commit1f83c7fca87851a97484b68b25d0c6a88db053af (patch)
treecbc5b197a16e527e16abb9159fee590e2ad8a464 /bitbake/lib/toaster/toastergui/templates/package_built_detail.html
parentbe778cdded6b09066be5c5d326852da9a3ae0642 (diff)
downloadpoky-1f83c7fca87851a97484b68b25d0c6a88db053af.tar.gz
bitbake: toaster: Move <tbody> outside for statement
In the package details pages, the <tbody> tags where inside the for statements, which caused multiple <tbody> tags to be generated inside a single table. To make sure only one <tbody> tag exists per table, moving the <tbody> tag outside the for statement. (Bitbake rev: 0c111b24e9f86130bc43c1327a6d12026e92cdf2) 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/templates/package_built_detail.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_built_detail.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_built_detail.html b/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
index fe856a3cb6..b50ef53ded 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_built_detail.html
@@ -29,15 +29,15 @@
29 <th>File</th> 29 <th>File</th>
30 <th>Size</th> 30 <th>Size</th>
31 </tr> 31 </tr>
32 </thead> 32 </thead>
33 {% for file in package.buildfilelist_package.all|dictsort:"path" %} 33 <tbody>
34 <tbody> 34 {% for file in package.buildfilelist_package.all|dictsort:"path" %}
35 <tr> 35 <tr>
36 <td>{{file.path}}</td> 36 <td>{{file.path}}</td>
37 <td>{{file.size|filtered_filesizeformat}}</td> 37 <td>{{file.size|filtered_filesizeformat}}</td>
38 </tr> 38 </tr>
39 </tbody> 39 {% endfor %}
40 {% endfor %} 40 </tbody>
41 </table> 41 </table>
42 42
43 {% else %} 43 {% else %}