Monday, March 07, 2011

Usage - django-mako - Django mako plugin usage. - Project Hosting on Google Code

Usage - django-mako - Django mako plugin usage. - Project Hosting on Google Code: "Using djangomako in your views
from djangomako.shortcuts import render_to_response, render_to_string

def index_view(request):
    return render_to_response('index.html', {'user':request.user})

def print_index_view(request):
    print render_to_string('index.html', {'user':request.user})"