{% extends "base.html" %} {% block title %}Audit Logs - AWS Inventory Browser{% endblock %} {% block content %}
History of cleanup operations and their results
| Operation | Baseline | Timestamp | Results | Status |
|---|---|---|---|---|
|
{{ op.operation_id[:12] }}...
{{ op.mode | default('cleanup') }}
|
{{ op.baseline_snapshot }} | {{ op.timestamp }} |
{{ op.succeeded_count | default(0) }} succeeded
{% if op.failed_count %}
{{ op.failed_count }} failed
{% endif %}
{% if op.skipped_count %}
{{ op.skipped_count }} skipped
{% endif %}
|
{% set status_colors = {'completed': 'green', 'failed': 'red', 'partial': 'amber', 'running': 'blue'} %} {% set color = status_colors.get(op.status, 'gray') %} {{ op.status }} |