How to pass json array to html page via flask render_template

Solution
return render_template("page.html", attendance=array_name)
{% for student in attendance %}

{{ student['StudentName'] }}

{{ student['Status'] }}

{% endfor %}