milli logo in white milli logo in black
    {% for update in updates %} {% match update %} {% when UpdateStatus::Pending with { update_id, meta } %}
    1. update id
      {{ update_id }}
      update status
      pending
  1. {% when UpdateStatus::Processed with { update_id, meta } %}
    1. update id
      {{ update_id }}
      update status
      {{ meta }}
  2. {% when UpdateStatus::Aborted with { update_id, meta } %}
    1. update id
      {{ update_id }}
      update status
      aborted
  3. {% else %} {% endmatch %} {% endfor %}