{% extends "base.html" %} {% block title %}Upgrade History - garuda-pilot{% endblock %} {% block content %}
{{ transactions | length }} transactions recorded
| # | 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 %} |
Transaction history will be imported from pacman.log on first run.