{% 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
processed
               
            
           
        {% else %}
        {% endmatch %}
      {% endfor %}