{% extends "portal_base.html" %} {% block title %}Global Video Jobs - OTB Cloud{% endblock %} {% block portal_content %}

Global Video Jobs

All video processing jobs across your devices.

Newest first. Use this as a cross-device overview.
{% if jobs and jobs|length > 0 %}
{% for j in jobs %}
{{ j.filename }}
{% if j.output_relative_path and j.status == 'complete' %} View Download Output {% endif %} {% if j.status in ['failed', 'complete'] %} {% endif %} {{ j.status|upper }}
Job ID
{{ j.id }}
Device
{{ j.device_name }} ({{ j.device_id }})
Profile
{{ j.profile }}
Rotation Override
{{ j.rotation_override or 'auto' }}
Processor
{{ j.assigned_processor or 'pending' }}
Progress
{{ j.progress_percent }}%
Created
{{ j.created_at }}
Started
{{ j.started_at }}
Completed
{{ j.completed_at }}
Original Size
Processed Size
GPU Time
{{ j.gpu_seconds }}s
Source File ID
{{ j.source_file_id or '' }}
{% if j.output_relative_path %}
Output
{{ j.output_relative_path }}
{% endif %} {% if j.error_message %}
Error
{{ j.error_message }}
{% endif %}
{% endfor %}
{% else %}
No video jobs yet.
{% endif %}
{% endblock %}