1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django import template
5 from ..helpers import get_active_schedule
8 register = template.Library()
12 def active_schedule(user):
13 return get_active_schedule(user)