Minor fixes.
[wolnelektury.git] / src / contact / templatetags / contact_tags.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.template import Library
5 from contact.models import Contact
6
7 register = Library()
8
9
10 @register.filter
11 def pretty_print(value):
12     return Contact.pretty_print(value)