I have the downlaod link in my Django view , where the user can download the pdf forms. But i also need to
grab the all the URL parameters passed with the link.
I mean if user click on
http://www.abc.com/download then the simple pdf form will be downloaded
but i use click on
http://www.abc.com/download?var1=20&var2=30&var3=40
Then i need to get those parameters with their name and fill in fields.
That arguments can vary so i can’t hard code those in view
Edit:
Based on your comment, you must be new to python.
Here are a few ways to access the items in your dictionary.
Or you could loop over the dict: