diff --git a/src/pretix/control/templates/pretixcontrol/datasync/control_order_info.html b/src/pretix/control/templates/pretixcontrol/datasync/control_order_info.html
index 7c507878b1..8de925725c 100644
--- a/src/pretix/control/templates/pretixcontrol/datasync/control_order_info.html
+++ b/src/pretix/control/templates/pretixcontrol/datasync/control_order_info.html
@@ -5,17 +5,27 @@
- {% trans "Data Sync" %}
+ {% trans "Data transfer to external systems" %}
-
-
-
- {% for identifier, display_name, pending, objects in providers %}
-
- | {{ display_name }} |
-
+
+ {% for identifier, display_name, pending, objects in providers %}
+ -
+
+
{{ display_name }}
+ {% if pending %}
+
{% if pending.failed_attempts %}
{% blocktrans trimmed with num=pending.failed_attempts max=pending.max_retry_attempts %}
@@ -32,41 +42,25 @@
{% else %}
{% trans "Pending" %}
{% endif %}
- (triggered by {{ pending.triggered_by }} at {{ pending.triggered|date:"SHORT_DATETIME_FORMAT" }})
- {% else %}
- -
- {% endif %}
- |
-
-
- |
-
- {% for obj in objects %}
-
- |
-
+ (triggered by {{ pending.triggered_by }} at {{ pending.triggered|date:"SHORT_DATETIME_FORMAT" }})
+
+ {% endif %}
+
+
+ {% for obj in objects %}
+ -
{% if obj.external_link_html %}
{{ obj.external_link_html }}
{% else %}
- {{ obj.external_object_type }} with {{ obj.external_pk_name }} = {{ obj.external_pk_value }}
+ {{ obj.external_object_type }}
+ {% trans "identified by" %} {{ obj.external_pk_name }}
+ {{ obj.external_pk_value }}
{% endif %}
-
|
- {{ obj.timestamp }} |
-
- {% endfor %}
- {% endfor %}
-
-
-
+
+
+ {% endfor %}
+
+
+ {% endfor %}
+