{% 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 }} |
| State |
Confirmed |
Active |
Recovered |
Deceased |
{% for state in statedatalist %}
{% if state['statecode'] != 'TT'%}
|
{{state['state'] }}
|
{{state['confirmed'] | comafy }} |
{{state['active'] | comafy }} |
{{state['recovered'] | comafy }} |
{{state['deaths'] | comafy }} |
{%endif%}
{% endfor %}
|
|
|
Note: Recovered data is subject to further verification.
{% endblock %}