Ejemplo n.º 1
0
def home_with_template(req):
    context = {
        'quote': get_quote(),
    }
    return render_to_response('home.django', context)
Ejemplo n.º 2
0
def home(req):
    return HttpResponse(get_quote())