{% extends "base.html" %} {% block title %}Upgrade History - garuda-pilot{% endblock %} {% block content %}
{{ transactions | length }} / {{ transactions | length }} {% for ctype, count in type_counts.items() %} {% if ctype not in ['garuda-internal', 'mhwd', 'unknown', 'other'] %}
{% endif %} {% endfor %}
{% if transactions %} {% for txn in transactions %} {% endfor %}
# Date Type Packages Upgraded Installed Removed
{{ txn.id }} {{ txn.started_at[:19] | replace("T", " ") }} {{ txn.cmd_label }} {{ txn.total }} {% if txn.warning_count %} {{ txn.warning_count }}w {% endif %} {% if txn.upgraded %}{{ txn.upgraded }}{% else %}-{% endif %} {% if txn.installed %}{{ txn.installed }}{% else %}-{% endif %} {% if txn.removed %}{{ txn.removed }}{% else %}-{% endif %}
{% else %}

No transactions found

Transaction history will be imported from pacman.log on first run.

{% endif %} {% endblock %}