{% load i18n %}
{% trans "Statistics" %}
{% trans "Created" %} {% if object.num_created %} {{ object.num_created }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Updated" %} {% if object.num_updated %} {{ object.num_updated }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Deleted" %} {% if object.num_deleted %} {{ object.num_deleted }} {% else %} {{ ''|placeholder }} {% endif %}
{% if deleted_statistics or marked_statistics %}
{% if deleted_statistics %}

{% trans "Deleted" %}

    {% for model, count in deleted_statistics.items %}
  • {{ model }} {{ count }}
  • {% endfor %}
{% endif %} {% if marked_statistics %}

{% trans "Marked (on-missing update)" %}

    {% for model, count in marked_statistics.items %}
  • {{ model }} {{ count }}
  • {% endfor %}
{% endif %}
{% endif %}