<div id="custom_table">
<h4>List of Patients</h4>
<table>
<tr>
<th>Age</th>
</tr>
{% for patient in frappe.get_list('Patients list', filters={}, fields=['age'] %}
<tr>
<td>{{ patient.age }}</td>
</tr>
{% endfor %}
</table>
</div>
THIS IS WHAT I GET
THIS IS WHAT I SET IN CUSTOM HTML BLOCK