I call a template like this from my view:

return render_to_response('mytemplate.html')context_instance=RequestContext(request))

I'm trying to access the hostname of my current server (in this case, localhost), but it just prints blank when I place {{request.META.SERVER_NAME}} in the template.

In my settings.py file, I don't have any TEMPLATE_CONTEXT_PROCESSORS defined. I'm not sure if I need to specify anything there, or if that could solve the problem.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You have to add the request context processor to have it added to the template context automatically. Or you could explicitly add the request to the context dictionary render_to_response('foo', {'request': request})

https://docs.djangoproject.com/en/dev/ref/templates/api/#django-core-context-processors-request

Note that if you add the request context processor, you should remember to add the defaults as well.

link|improve this answer
Thanks. Now it returns 1.0.0.127.in-addr.arpa instead of localhost though. Any idea on that? – babonk Jan 31 at 1:48
@babonk, that's a different question that I can't answer as I'm not very familiar with headers. – Yuji Tomita Jan 31 at 1:57
Got it with request.get_host(). Thanks for the help – babonk Jan 31 at 2:13
@babonk, nice! NP! – Yuji Tomita Jan 31 at 2:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.