{% extends "pretixcontrol/event/base.html" %}{% load i18n %} {% block title %}{% trans "CRM sync log" %}{% endblock %} {% block content %}

{% trans "CRM sync log" %}

{% trans "The 25 most recent CRM sync attempts for this event." %}

{% for s in syncs %}{% empty %}{% endfor %}
{% trans "When" %}{% trans "Destination" %}{% trans "Order" %} {% trans "Outcome" %}{% trans "Detail" %}
{{ s.created }} {{ s.destination }} {{ s.order_code|default:"—" }} {% if s.outcome == "sent" %}{% trans "sent" %} {% elif s.outcome == "skipped" %}{% trans "skipped" %} {% else %}{% trans "failed" %}{% endif %} {% if s.status_code %} {{ s.status_code }}{% endif %} {{ s.detail|default:"—" }}
{% trans "No syncs yet." %}
{% endblock %}