On 14 Jun 2006, at 12:52, Roger Sun wrote:

> I don't like the django templates, can i use kid ?
> if can, how can i do then?

Yes you can. Here's an example:

from django.http import HttpResponse
import kid

def index(request):
   # Set up any variables you might want to use
   template = kid.Template(
     file='/path/to/template.kid',
     foo='Bar', baz='bling'
   )
   return HttpResponse(template.serialize())

That's it! Django is designed to completely decouple HTML generation  
etc from the views, so it's very easy to use whatever method you want  
to generate the content to be sent back in the HttpResponse.

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