app/django/templatetags/__init__.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 22 Feb 2009 10:07:05 +0000
changeset 1452 2209a6e59870
parent 54 03e267d67478
permissions -rw-r--r--
Style fixes in jquery-ui.datetimepicker.js file. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.conf import settings

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