Suppose I have a url that has php style parameters, that is:
http://example.com/blah?param1=val1¶m2=val2
And, I want to place their values into the generated HTML of the template.
How do I achieve this?
{{request.GET.param1}}
in the template. (Using RequestContext)
request.GET.get('param1', None)
in the view.