Serotonin Storm

source>template_utils>templatetags>philterz.py
1
2
3
4
5
6
7
from django import template

from template_utils import filters

register = template.Library()
for name,filter_func in filters.items():
    register.filter(name, filter_func)