Housekeeping.
[wolnelektury.git] / src / club / templatetags / club.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django import template
5 from ..helpers import get_active_schedule
6
7
8 register = template.Library()
9
10
11 @register.filter
12 def active_schedule(user):
13     return get_active_schedule(user)