Hi, I wrote a simple filter as:
@register.filter()
def html(value):
return '<p>Check</p>'
when I use this filter in my template, it displays html as:
<p>Check</p>
I want to display as:
Check
am I missing something.
- Thanks for your help
Ashish
--
http://mail.python.org/mailman/listinfo/python-list
