{% extends "package_detail_base.html" %} {% load projecttags %} {% block tabcontent %}
{% ifequal runtime_deps|length 0 %}
{{package.fullpackagespec}} has no runtime dependencies.
{% else %}
{{package.fullpackagespec}} is not included in any image. This page shows you the projected runtime dependencies if you include {{package.fullpackagespec}} in future builds.
{% for runtime_dep in runtime_deps %} {% if runtime_dep.size != -1 %} {% else %} {% endif %} {% endfor %}
Package Version Size
{{runtime_dep.name}} {{runtime_dep.name|format_vpackage_namehelp}} {{runtime_dep.version}} {{runtime_dep.size|filtered_filesizeformat}}
{% endifequal %} {% ifnotequal other_deps|length 0 %}

Other runtime relationships

{% for other_dep in other_deps %} {% if other_dep.size != -1 %} {% else %} {% endif %} {% endfor %}
Package Version Size Relationship type
{{other_dep.name}} {{other_dep.name|format_vpackage_namehelp}} {{other_dep.version}} {{other_dep.size|filtered_filesizeformat}} {{other_dep.dep_type_display}}
{% endifnotequal %}
{% endblock tabcontent %}