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