728x90
render_to, render_to_response 에서 변수 전달은 아래와 같이 할 수 있다
@render_to('template.html')
def foo(request):
bar = Bar.object.all()
return {'bar': bar}
# equals to
def foo(request):
bar = Bar.object.all()
return render_to_response('template.html',
{'bar': bar},
context_instance=RequestContext(request))
728x90
'프로그래밍 Programming' 카테고리의 다른 글
object has no attribute 'title' and getattr(object, name[, default]) (0) | 2015.11.20 |
---|---|
feedparser 5.2.1 (universal feed parser) (0) | 2015.11.14 |
ImportError: No module named mechanize (0) | 2015.10.23 |
윈도우에 easy_install, pip 설치하기 (0) | 2015.10.17 |
Anaconda Package List (Python version: 2.7) (0) | 2015.10.17 |