{% extends "package_detail_base.html" %} {% load projecttags %} {% block title %} {% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec %}

{{fullPackageSpec}} ({{target.target}})

{% endwith %} {% endblock title %} {% block tabcontent %} {% with fullPackageSpec=package.name|add:"_"|add:package.version|add:"-"|add:package.revision|filtered_packagespec packageFileCount=package.buildfilelist_package.count %} {% include "package_included_tabs.html" with active_tab="dependencies" %}
{% ifnotequal runtime_deps|length 0 %} {% for runtime_dep in runtime_deps %} {% endfor %}
Package Version Size
{{runtime_dep.name}} {{runtime_dep.version}} {{runtime_dep.size|filtered_filesizeformat}}
{% else %}
{{fullPackageSpec}} has no runtime dependencies.
{% endifnotequal %} {% ifnotequal other_deps|length 0 %}

Other runtime relationships

{% for other_dep in other_deps %} {% if other_dep.installed %} {% else %} {% endif %} {% endfor %}
Package Version Size Relationship type
{{other_dep.name}} {{other_dep.version}} {{other_dep.size|filtered_filesizeformat}} {{other_dep.dep_type_display}}
{{other_dep.name}} {{other_dep.version}} {{other_dep.dep_type_display}}
{% endifnotequal %}
{% endwith %} {% endblock tabcontent %}