i could not find any documentation for while loop in jinja, is there any way we can create an infinite loop in jinja, i am using django framework. i want to request for data and keep updating the data in side the webpage.
in views have
r = requests.get(URL).json()
def index(request):
context = {'R' : r}
return render(request,'detail.html',context)
in the html i want something like this
{{ while ture}}
{{ R }}