{% extends "base.html" %} {% block title %}{{ encoder_type.title() }} Reports - Encoder{% endblock %} {% block content %}

{{ encoder_type.title() }} Encoder Reports

Job history and statistics for {{ encoder_type }} encoding

← Back to Dashboard

Job Reports

Total: {{ total }} jobs

{% if reports %}
{% for report in reports %} {% if report.status == 'failed' and report.error_message %} {% endif %} {% endfor %}
File Status Original Size Encoded Size Space Saved Format Processing Time Date
{{ report.file_path.split('/')[-1] }}
{{ report.file_path }}
{% if report.status == 'success' %} Success {% elif report.status == 'failed' %} Failed {% else %} Processing {% endif %} {{ report.original_size|format_bytes }} {{ report.encoded_size|format_bytes }} {% if report.size_saved > 0 %} {{ report.size_saved|format_bytes }} {% elif report.size_saved < 0 %} {{ report.size_saved|format_bytes }} {% else %} {{ report.size_saved|format_bytes }} {% endif %} {{ report.original_format }} {{ report.encoded_format }} {{ report.processing_time|format_duration }}
{{ report.created_at.strftime('%Y-%m-%d') }}
{{ report.created_at.strftime('%H:%M:%S') }}
Error: {{ report.error_message }}
{% if total_pages > 1 %}
{% if page > 1 %} Previous {% endif %} {% if page < total_pages %} Next {% endif %}
{% endif %} {% else %}

No reports found

No encoding jobs have been completed yet.

{% endif %}
{% endblock %}