{% for update in updates %}
{% match update %}
{% when UpdateStatus::Pending with { update_id, meta } %}
-
-
update id
{{ update_id }}
update status
pending
{% when UpdateStatus::Processed with { update_id, meta } %}
-
-
update id
{{ update_id }}
update status
{{ meta }}
{% when UpdateStatus::Aborted with { update_id, meta } %}
-
-
update id
{{ update_id }}
update status
aborted
{% else %}
{% endmatch %}
{% endfor %}