this is my home.html
{% for i in ind %}
{{ i.state }}<br>
{% endfor %}
in this for loop i do not want first data coming from ind, i want all data except first data then how to iterate this for loop, this is Django project
this is my views.py
res = requests.get("https://api.covid19india.org/data.json")
ind = res.json()['statewise']
the data of ind variable is going to for loop but i do not want first data of ind variable