{% extends "layout.html" %} {% block title %} {{State}} Covid-19 India {% endblock %} {% block content %}

India

Confirmed Active Recovered Deceased
{{statedatalist[0]['confirmed'] | comafy}} {{ statedatalist[0]['active'] | comafy}} {{statedatalist[0]['recovered'] | comafy }} {{statedatalist[0]['deaths'] | comafy }}
{% for state in statedatalist %} {% if state['statecode'] != 'TT'%} {%endif%} {% endfor %}
State Confirmed Active Recovered Deceased
{{state['state'] }} {{state['confirmed'] | comafy }} {{state['active'] | comafy }} {{state['recovered'] | comafy }} {{state['deaths'] | comafy }}

| | |

Note: Recovered data is subject to further verification.
{% endblock %}