summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html b/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
index a08409ac7f..a3fcdb09ed 100644
--- a/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
+++ b/bitbake/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
@@ -1,9 +1,9 @@
1{# Popover that displays the dependences and sizes of a package 'data' used in the Packages table #} 1{# Popover that displays the dependences and sizes of a package 'data' used in the Packages table #}
2{% with data.package_dependencies_source.count as dep_count %} 2{% with data.package_dependencies_source.all_depends.count as dep_count %}
3{% load projecttags %} 3{% load projecttags %}
4{% if dep_count %} 4{% if dep_count %}
5 <a data-content="<ul class='unstyled'> 5 <a data-content="<ul class='unstyled'>
6 {% for dep in data.package_dependencies_source.all %} 6 {% for dep in data.package_dependencies_source.all_depends %}
7 <li>{{dep.depends_on.name}} {% if dep.depends_on.size > 0 %}({{dep.depends_on.size|filtered_filesizeformat}}){% endif %}</li> 7 <li>{{dep.depends_on.name}} {% if dep.depends_on.size > 0 %}({{dep.depends_on.size|filtered_filesizeformat}}){% endif %}</li>
8 {% endfor %} 8 {% endfor %}
9 </ul>" title="" class="btn" data-original-title=" 9 </ul>" title="" class="btn" data-original-title="