{% if packages %} {% for pkg in packages %}
{{ pkg.name }} ({% if pkg.installed %}installed{% else %}not installed{% endif %})
{% if pkg.description %}Description: {{ pkg.description }}
{% endif %}Options: {{ pkg.options }}
{% if 'l' in pkg.options and pkg.installed %}
{% endif %} {% if 'i' in pkg.options and not pkg.installed %}
{% endif %} {% if 'u' in pkg.options and pkg.installed %}
{% endif %} {% if 'a' in pkg.options and pkg.installed %}
{% endif %} {% if 'g' in pkg.options and pkg.installed %}
{% endif %} {% if 'G' in pkg.options %}
{% endif %} {% for extra in pkg.extra_actions %}
{% endfor %}
{% if 'e' in pkg.options and pkg.installed %}
{% endif %}
{% endfor %} {% else %}

No packages found.

{% endif %}