How to iterate a queryset list in a django templat

2020-04-17 06:11发布

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.

1条回答
我欲成王,谁敢阻挡
2楼-- · 2020-04-17 06:28

Django's template language does of course accept lists!

Here is what the code in your template should look like:

{% for director in director_list %}
    {{ director }}
{% endfor %}

By the way: What you're having here is a queryset (that gets evaluated to a list), not a list of querysets.

查看更多
登录 后发表回答