{% 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 were to include {{package.fullpackagespec}} in an image.
Package |
Version |
Size |
{% for runtime_dep in runtime_deps %}
{% if runtime_dep.size != -1 %}
{{runtime_dep.name}}
|
{% else %}
{{runtime_dep.name|format_vpackage_namehelp}}
|
{% endif %}
{{runtime_dep.version}} |
{{runtime_dep.size|filtered_filesizeformat}} |
{% endfor %}
{% endifequal %}
{% ifnotequal other_deps|length 0 %}
Other runtime relationships
Package |
Version |
Size |
Relationship type
|
{% for other_dep in other_deps %}
{% if other_dep.size != -1 %}
{{other_dep.name}}
|
{% else %}
{{other_dep.name|format_vpackage_namehelp}}
|
{% endif %}
{{other_dep.version}} |
{{other_dep.size|filtered_filesizeformat}} |
{{other_dep.dep_type_display}}
|
{% endfor %}
{% endifnotequal %}
{% endblock tabcontent %}