{% extends "pretixcontrol/event/base.html" %}{% load i18n %} {% block title %}{% trans "CRM sync log" %}{% endblock %} {% block content %}
{% trans "The 25 most recent CRM sync attempts for this event." %}
| {% 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." %} | ||||