aadba16e10b6dc78fb408c523812eeba9f064340
[edumed.git] / contact / templatetags / contact_tags.py
1 # -*- coding: utf-8 -*-
2 from django.template import Library
3 from contact.models import Contact
4
5 register = Library()
6
7
8 @register.filter
9 def pretty_print(value):
10     return Contact.pretty_print(value)