On 5 Jul 2006, at 14:32, plungerman wrote:

> i would like to store django template code in a database and retrieve
> it for display.

The Django template system was originally designed with this exact  
use-case in mind - we made sure that there was flexibility as to  
where the templates were loaded from so that if we ever wanted to put  
them in a database we could do exactly that.

You'll need to write a custom template loader that pulls templates  
from a database table instead of the file system. How you write  
custom loaders isn't yet documented ( http://www.djangoproject.com/ 
documentation/templates_python/#loader-types is the closest the  
documentation gets) but it should be pretty simple - you'll need to  
model it on the code in django/template/loaders/ . A template loader  
is basically just a module with a function fitting the following  
signature:

def load_template_source(template_name, template_dirs=None):
   ...

Hope that helps,

Simon

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to