mirror of
git://git.yoctoproject.org/poky
synced 2026-08-16 19:08:27 +00:00
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>
15 lines
746 B
HTML
15 lines
746 B
HTML
{# Popover that displays the dependences and sizes of a package 'data' used in the Packages table #}
|
|
{% 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_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="
|
|
<strong>{{data.name}}</strong> dependencies - <strong>{{data.package_dependencies_source.get_total_source_deps_size.depends_on__size__sum|filtered_filesizeformat}}</strong>">
|
|
{{dep_count}}
|
|
</a>
|
|
{% endif %}
|
|
{% endwith %}
|