summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_included_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_included_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_included_detail.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_included_detail.html8
1 files changed, 4 insertions, 4 deletions
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 @@
20 <th>Size</th> 20 <th>Size</th>
21 </tr> 21 </tr>
22 </thead> 22 </thead>
23 {% for file in package.buildfilelist_package.all|dictsort:"path" %} 23 <tbody>
24 <tbody> 24 {% for file in package.buildfilelist_package.all|dictsort:"path" %}
25 <tr> 25 <tr>
26 <td> 26 <td>
27 <a href="{% url 'image_information_dir' build.id target.id file.id %}"> 27 <a href="{% url 'image_information_dir' build.id target.id file.id %}">
@@ -30,8 +30,8 @@
30 </td> 30 </td>
31 <td>{{file.size|filtered_filesizeformat}}</td> 31 <td>{{file.size|filtered_filesizeformat}}</td>
32 </tr> 32 </tr>
33 </tbody> 33 {% endfor %}
34 {% endfor %} 34 </tbody>
35 </table> 35 </table>
36 36
37 {% else %} 37 {% else %}