app/django/templatetags/__init__.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Sun, 30 Aug 2009 22:00:07 +0530
changeset 2845 99121cc7181d
parent 54 03e267d67478
permissions -rw-r--r--
GHOPWorkSubmission model is made id_based and inherits from base. Also a reference property to GHOPOrganization is added in GHOPWorkSubmission model.

from django.conf import settings

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