membersystem/project/context_processors.py
Víðir Valberg Guðmundsson c4596c25c6 Run linting (aka the blackening)
2019-09-01 00:27:36 +02:00

7 lines
238 B
Python

"""Context processors for the membersystem app."""
from django.contrib.sites.shortcuts import get_current_site
def current_site(request):
"""Include the current site in the context."""
return {"site": get_current_site(request)}