{% if data %}
Index
First Name
Username
Password
{% for item in data %}
{{ loop.index }}
{% for dat in item %}
{{dat}}
{% endfor %}
{% endfor %}
{% else %}
Failed to fetch data from DB!
{% endif %}