| {{ entry.index }} |
{% if entry.skipped %}
{% elif entry.failed %}
{% else %}
{% endif %}
|
{{ entry.label }}
{% if entry.outcome and entry.outcome.action is defined and entry.outcome.action %}
{{ entry.outcome.action }}
{% endif %}
{% if entry.outcome and entry.outcome.object_ids is defined %}
{% if entry.outcome.object_ids|length <= 20 %}
{% for id in entry.outcome.object_ids %}#{{ id }}{% if not loop.last %}, {% endif %}{% endfor %}
{% else %}
{{ entry.outcome.object_ids|length }} {{ t("results.hits") }}
{% endif %}
{% elif entry.outcome and entry.outcome.total is defined %}
{{ entry.outcome.total }} {{ t("results.hits") }}
{% endif %}
{% if entry.outcome and entry.outcome.file_removed is defined and entry.outcome.file_removed %}
{{ t("dml.file_removed") }}
{% endif %}
{% if entry.outcome and entry.outcome.failures is defined and entry.outcome.failures %}
{{ t("dml.partial_failures", count=entry.outcome.failures|length) }}
{% for failure in entry.outcome.failures %}{{ failure.object_id }}: {{ failure.message }}
{% endfor %}
{% endif %}
{% if entry.error_diag %}{{ entry.error_diag.message(t) }}{% endif %}
{% if entry.error %}{{ entry.error }}{% endif %}
|
{% if entry.statement %}{{ entry.statement }}{% endif %}
|