Is there a way to iterate this list of querysets in the template?
[<Director: Roman Polanski>, <Director: Alfred Hitchcock>,
<Director: Steven Spielberg>, <Director: David Lynch>]
I tried using a list syntax, but the django template language doesn't seem to accept lists, also. Thank you all.
Django's template language does of course accept lists!
Here is what the code in your template should look like:
By the way: What you're having here is a queryset (that gets evaluated to a list), not a list of querysets.