cqtu/contest/context_processors.py

8 lines
134 B
Python

from .models import Contest
def current_contest(self):
return {
'current_contest': Contest.get_current_contest(),
}