1a341697107226118d1749b2420a6f5c4a42dde7
[wolnelektury.git] / src / club / templatetags / club.py
1 from django import template
2 from ..helpers import get_active_schedule
3
4
5 register = template.Library()
6
7
8 @register.filter
9 def active_schedule(user):
10     return get_active_schedule(user)