{% extends "layout.html" %} {% block title %}{{ super() }}Install Package on {{ context }}{% endblock %} {% block content %} {{ super() }}

Install Package on {{ context }}

{% if packages %} {% for p in packages %} {% if p %}
{% endif %} {% endfor %} {% endif %}

{% if result and 'newsolvables' in result %} {% if result['choices'] %} Choices taken:
{% endif %}
{% for p in result['newsolvables'] %} {% endfor %}
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 %}
{% endif %} {% endblock %}