add contact app + konkurs contact form
[wolnelektury.git] / src / 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)