summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.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_reverse_dependencies.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_reverse_dependencies.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html b/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
index 9cfc7fe7c2..8ae0af3a8a 100644
--- a/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
+++ b/bitbake/lib/toaster/toastergui/templates/package_included_reverse_dependencies.html
@@ -26,8 +26,8 @@
26 <th>Size</th> 26 <th>Size</th>
27 </tr> 27 </tr>
28 </thead> 28 </thead>
29 {% for reverse_dep in reverse_deps|dictsort:"name" %} 29 <tbody>
30 <tbody> 30 {% for reverse_dep in reverse_deps|dictsort:"name" %}
31 <tr> 31 <tr>
32 <td> 32 <td>
33 <a href="{% url 'package_included_detail' build.id target.id reverse_dep.dependent_id %}"> 33 <a href="{% url 'package_included_detail' build.id target.id reverse_dep.dependent_id %}">
@@ -37,8 +37,8 @@
37 <td>{{reverse_dep.version}}</td> 37 <td>{{reverse_dep.version}}</td>
38 <td>{{reverse_dep.size|filtered_filesizeformat}}</td> 38 <td>{{reverse_dep.size|filtered_filesizeformat}}</td>
39 </tr> 39 </tr>
40 </tbody> 40 {% endfor %}
41 {% endfor %} 41 </tbody>
42 </table> 42 </table>
43 {% endifequal %} 43 {% endifequal %}
44 </div> <!-- end tab-pane --> 44 </div> <!-- end tab-pane -->