<tbody>
{% for j in dat %}
<tr>
{%for h in hed %}
<td>{{j.h}}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
want to get value by object.field_name from the model. I've tried {{ j }}.{{ h }} but it does not return the value instead returns obj1.field_name. Any possible method i should try.