{% extends "base.html" %} {% block title %}Transaction #{{ transaction.id }} - garuda-pilot{% endblock %} {% block content %}
{{ operations | length }} total {{ upgraded_count }} upgraded {{ installed_count }} installed {{ removed_count }} removed
{% if pacman_command %}
{{ pacman_command }}
{% endif %} {% if warnings %}

Warnings [{{ warnings | length }}]

{% endif %} {% if scriptlet_lines %}

Scriptlet Output [{{ scriptlet_lines | length }} lines]

{% for line in scriptlet_lines %}{{ line }}
{% endfor %}
{% endif %}
{{ operations | length }} / {{ operations | length }}
{% for op in operations %} {% endfor %}
Package Description Action Version Age
{{ op.package_name }} {% if op.category %}
{% for cat in op.category.split() %} {{ cat }} {% endfor %} {% endif %}
{{ op.description or "—" }} {{ op.action | upper }} {{ op.old_version or "—" }}
{{ op.new_version or "—" }}
{% if op.build_date %} built {{ op.build_date }}
{% endif %} {% if op.install_date %} since {{ op.install_date }} {% endif %}
Back to History
{% endblock %}