How can I iterate over my list in jinja2 flask app?

Solution
{% for canary in newlist %}
    
        {{canary.name}}
        {{canary.uptime}}
        {{canary.ip_address}}
        {{canary.location}}
    
{% endfor %}
newlist = []
for item in results['devices']:
    newlist.append({'name':item.get("name"), 'ip_address':item.get("ip_address"), etc etc etc})