{% if error %}
Failed: {{ error }}
{% else %}Done on {{ target }}.
{% for k, v in result.items() if k != '_meta' %}
{% if v is mapping and v.resourceType %}
{{ k }}: {% if target == 'local' or target.startswith('messaging') %}{{ v.resourceType }}/{{ v.id }}{% else %}{{ v.resourceType }}/{{ v.id }}{% endif %}{% endif %}
{% endfor %}
Message acks: {% for a in result._meta.acks %}{{ a.event }} {{ a.response_code or a.status }} {% endfor %}
{% endif %}{{ result|pretty }}