Added docs for the db template loader and skeleton docs for templatetags. Updated...
[philo.git] / philo / loaders / database.py
index 71b93a6..4c9c379 100644 (file)
@@ -6,6 +6,10 @@ from philo.models import Template
 
 
 class Loader(BaseLoader):
+       """
+       :class:`philo.loaders.database.Loader` enables loading of template code from :class:`.Template`\ s. This would let :class:`.Template`\ s be used with ``{% include %}`` and ``{% extends %}`` tags, as well as any other features that use template loading.
+       
+       """
        is_usable=True
        
        def load_template_source(self, template_name, template_dirs=None):