Is it possible to specif template name in view annotation.
I would like to do something like that in my views.py: instead of:
def home(request, url):
page = PageFactory.create_for_url(url)
return render_to_response('front/home.html', {'page': page})
I would prefer to do it in this way:
@view('front/home.html')
def home(request, url):
page = PageFactory.create_for_url(url)
return {'page': page}
is it doable?
