fnp
/
edumed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e84064a12ef8f8bdc593e467b555b7a27ea72787
[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)