Add site info to request context

1
2
3
4
5
6
7
8
9
from django.contrib.sites.models import Site, RequestSite

def site(request):
    site_info = {'protocol': request.is_secure() and 'https' or 'http'}
    if Site._meta.installed:
        site_info['domain'] = Site.objects.get_current().domain
    else:
        site_info['domain'] = RequestSite(request).domain
    return site_info

More like this

Comments

Archatas (on November 17, 2008):

The absolute url might also include a specific port. So that should be also included into the snippet.

#

(Forgotten your password?)