I have different lists
context = {
'query' : request.POST['query'],
'link' : link,
'description' : description,
'title' : title,
'thumbnail' : thumb,
'range' : range(len(title)),
}
And I want to iterate through them something like:
for i in range(20):
link[i]
title[i]
In django template. How can i do it?
linkandtitlehere?