app/django/templatetags/__init__.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 30 Nov 2008 16:46:32 +0000
changeset 628 6685c7b56d50
parent 54 03e267d67478
permissions -rw-r--r--
Add module docstring and license for soc, soc.models, soc.views.helper.templatetags. Patch by: Pawel Solyga

from django.conf import settings

for a in settings.INSTALLED_APPS:
    try:
        __path__.extend(__import__(a + '.templatetags', {}, {}, ['']).__path__)
    except ImportError:
        pass