{% load i18n %} {% with block=job.data.proxbox_sync %} {% if block %}
{% trans "Proxbox sync" %}
{% if block.runtime_seconds is not None %}

{% trans "Runtime" %}: {{ block.runtime_seconds }}s

{% endif %} {% if block.params.sync_types %}

{% trans "Sync types" %}: {{ block.params.sync_types|join:", " }}

{% endif %} {% if block.response.stages %}

{% trans "Stage breakdown" %}:

{% for stage in block.response.stages %} {% endfor %}
{% 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 %}
{% endif %}
{% endif %} {% endwith %}