{% extends "layout.html" %} {% block title %}{{ super() }}Install Package on {{ context }}{% endblock %} {% block content %} {{ super() }}
| Package | Size | Reason | Rule |
|---|---|---|---|
| TOTAL | {{ result['size'] }} | ||
| {{ p[0].name }} | {{ p[0]|solvable_size }} | {{ p[1] }} |
{% for rule in p[2] %}
{% if rule|length == 4 and rule[1] == 'PKG_REQUIRES' %}
{{ rule[0] }} {{ rule[1][4:]|lower }} {{ rule[2] }}
{% elif p[1] == 'WEAKDEP' %}
{{ rule[0] }} {{ rule[1]|lower }} {{ rule[2] }}
{% else %}
{% for i in rule %}
{% if i %}
{{ i }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %} |