bitbake: toaster: pkg_dependencies_popover just show direct dependencies

In the dependencies popover just show direct dependency in the list
rather than recommends, conflicts etc

(Bitbake rev: e69b00532b011327bc2495a6fb52cfe98f0f897d)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Wood 2016-02-05 11:25:34 +00:00 committed by Richard Purdie
parent 40f6effec4
commit 8885b7bfd3
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
{# Popover that displays the dependences and sizes of a package 'data' used in the Packages table #}
{% with data.package_dependencies_source.count as dep_count %}
{% with data.package_dependencies_source.all_depends.count as dep_count %}
{% load projecttags %}
{% if dep_count %}
<a data-content="<ul class='unstyled'>
{% for dep in data.package_dependencies_source.all %}
{% for dep in data.package_dependencies_source.all_depends %}
<li>{{dep.depends_on.name}} {% if dep.depends_on.size > 0 %}({{dep.depends_on.size|filtered_filesizeformat}}){% endif %}</li>
{% endfor %}
</ul>" title="" class="btn" data-original-title="