Based on {{ stats.completed_jobs }} completed transcodes
@@ -56,7 +56,7 @@| ID | -File & Progress | -Priority | -Status | -Actions | +
|---|
| Job / Path | +Status | +Progress | +Actions | ||
|---|---|---|---|---|---|
| #{{ job.id }} | +|||||
|
{{ job.input_path }}
- {% if let Some(reason) = job.decision_reason %}{{ reason }}{% endif %}
+ {% match job.decision_reason %}
+ {% when Some with (reason) %}{{ reason }}
+ {% when None %}
+ {% endmatch %}
{% if job.is_active() %}
-
-
-
-
- {{ job.progress_fixed() }}%
+
+ Attempt #{{ job.attempt_count }} • Priority {{ job.priority }}
{% endif %}
|
- - - P{{ job.priority }} - - | {{ job.status }} - {% if let Some(vmaf) = job.vmaf_score %} + | ++ {% match job.vmaf_score %} + {% when Some with (vmaf) %} VMAF: {{ job.vmaf_fixed() }} - {% endif %} + {% when None %} + {% endmatch %} |
+
+
+
+ {{ job.progress_fixed() }}%
+
+
+ |
+
+
+ {% if job.can_retry() %}
+
+ {% endif %}
+
{% if job.is_active() %}
- {% else %}
-
{% endif %}
|