I write a project in django. I've got data from MS SQL called orders - there are few rows from the table. I would like to loop it, and each of them should render new tab '/print' with some context in order to create and download pdf. Like:
for o in orders:
HttpResponseRedirect('/print')
Is this possible?