How do I pass a query string from a response, meantime the relative template should also get loaded.
ex:
http://www.domain.com/test/?id=23423424
and id=23423424 is a key that is saved in the DB, so need to attach this when processing the response.
Thanks.
To my understanding, there are two ways to do this. You can either do it in
urls.py(andviews.py, but that comes later) or inviews.py.In views.py:
In urls.py:
View for urls.py method: