PonyConf/ponyconf/context_processors.py

9 lines
144 B
Python
Raw Normal View History

2016-06-07 20:59:13 +00:00
from django.contrib.sites.shortcuts import get_current_site
def site(request):
return {
'site': get_current_site(request),
}