Metadata-Version: 1.0
Name: django-configurable-inclusion-tag
Version: 0.1.1
Summary: A smart template inclusion tag
Home-page: http://github.com/defcube/django_configurable_inclusion_tag/
Author: Philip Gatt
Author-email: gattster@gmail.com
License: UNKNOWN
Description: Works like normal inclusion tag but it allows the wrapped function to specify which template to use, or to abort althogether and return.
        
        Example:
        
        @configurable_inclusion_tag(register)
        def maybe_show_foo(context):
            if not SHOULD_SHOW_FOO:
                return None
            return 'foo.html', context
        
Platform: UNKNOWN
