{% extends "base.html" %} {% block title %}Operation Log - Update Manager{% endblock %} {% block content %}

Operation Details

Operation: {% if history.operation == 'check' %} ๐Ÿ” Check for Updates {% elif history.operation == 'dry_run' %} ๐Ÿงช Dry Run {% elif history.operation == 'update' %} โฌ†๏ธ Update Packages {% elif history.operation == 'refresh' %} ๐Ÿ”„ Refresh Package Lists {% else %} {{ history.operation }} {% endif %}
Status: {% if history.status == 'success' %} Success {% elif history.status == 'failed' %} Failed {% elif history.status == 'running' %} Running {% else %} {{ history.status }} {% endif %}
Started: {{ history.started_at.strftime('%Y-%m-%d %H:%M:%S') }}
{% if history.completed_at %}
Completed: {{ history.completed_at.strftime('%Y-%m-%d %H:%M:%S') }}
Duration: {{ (history.completed_at - history.started_at).total_seconds()|round(1) }} seconds
{% endif %}
Initiated By: {{ history.initiated_by or 'System' }}
{% if history.packages_updated %}
Packages Updated: {{ history.packages_updated }}
{% endif %}
{% if history.error_message %}

Error

{{ history.error_message }}
{% endif %} {% if history.output %}

Output Log

{{ history.output }}
{% endif %} {% endblock %}