{% load i18n %} {% with block=job.data.proxbox_sync %} {% if block %} {% with summary=block.response.runtime_summary %}
{% trans "Endpoint runtime" %}: {{ endpoint_runtime.runtime_seconds|floatformat:1 }}s {% if endpoint_runtime.endpoint_id %} ({% trans "ID" %} {{ endpoint_runtime.endpoint_id }}) {% endif %}
{% if endpoint_runtime.phases %}| {% trans "Stage" %} | {% trans "Status" %} | {% trans "Summary" %} | {% trans "Runtime" %} |
|---|---|---|---|
| {{ phase.label }} | {% if phase.status == "success" %} {% trans "Success" %} {% elif phase.status == "warning" %} {% trans "Warning" %} {% else %} {{ phase.status }} {% endif %} | {{ phase.summary }} | {% if phase.runtime_seconds is not None and phase.runtime_seconds != "" %} {{ phase.runtime_seconds|floatformat:1 }}s {% else %} — {% endif %} |
{% trans "Stage breakdown" %}:
| {% trans "Stage" %} | {% trans "Runtime" %} |
|---|---|
| {{ stage.sync_type }} | {% if stage.runtime_seconds is not None and stage.runtime_seconds != "" %} {{ stage.runtime_seconds|floatformat:1 }}s {% else %} — {% endif %} |