How to pass a QuerySet object to a template. And then iterate through it in tempalte. If ikan does this ...?
Example
queryset =MyModel.objects.all() return render_to_response('template.html',{'queryset':queryset})
How will it look in the template?
Can I show the field of the key foreigne object in this template?
source share