How can i pass QuerySet object in to template. And then Iterate through it in tempalte. If ican do it....?
Example
model=MyModel.object.all()
return render_to_response('template.html',{'model':model})
How it'll looks in template?
Can I show field of foreigne key object in this template?