If I want to display more than one item of the request.META dictionary:
how can I put e.g. two in this string format:
def myurl(request): return HttpResponse("You are %s" % request.META['USER'], "Your IP Adress is " % request.META['REMOTE_ADDR'])
does not work.
- Any ideas how I can display/extract selective items of that dictionary.
If I want to run more than one via a template. How would I insert that in the html template:
e.g.
{{request.META }} . Does that works for all? How can I display them one in each line?
if I want e.g. just:
HTTP_COOKIE
QUERY_STRING
HTTP_CONNECTION
What would be the best way to display that 3 ?
Thanks!