membersystem/src/project/context_processors.py

6 lines
136 B
Python

from django.contrib.sites.shortcuts import get_current_site
def current_site(request):
return {"site": get_current_site(request)}