{% extends "base.html" %} {% block title %}{{ server.hostname or server.ip_address }} Updates - Update Manager{% endblock %} {% block content %}
{% if snapshot %}{{ snapshot.package_manager }}| Package | Current Version | New Version | Type |
|---|---|---|---|
| {{ pkg.name }} | {{ pkg.current_version or '-' }} |
{{ pkg.new_version }} |
{% if pkg.security %} Security {% else %} Regular {% endif %} |
โ All packages are up to date!
No update information available yet.
| Operation | Status | Started | Initiated By | Details |
|---|---|---|---|---|
| {% if h.operation == 'check' %} ๐ Check {% elif h.operation == 'dry_run' %} ๐งช Dry Run {% elif h.operation == 'update' %} โฌ๏ธ Update {% elif h.operation == 'refresh' %} ๐ Refresh {% else %} {{ h.operation }} {% endif %} | {% if h.status == 'success' %} Success {% elif h.status == 'failed' %} Failed {% elif h.status == 'running' %} Running {% else %} {{ h.status }} {% endif %} | {{ h.started_at.strftime('%Y-%m-%d %H:%M') }} | {{ h.initiated_by or '-' }} | {% if h.packages_updated %} {{ h.packages_updated }} packages {% endif %} {% if h.output or h.error_message %} View Log {% endif %} |