这是我的字典:
[{'entity': 'first entity', 'place': ['first', 'second', 'abc']}, {'entity': 'second entity', 'place': ['awe', 'ert']}]
我想以这种方式打印值:
-first entity
-first, second, abc
-second entity
-awe, ert
我尝试了很多东西但我不知道如何处理第二个键的列表
你能否建议我如何在 Django 模板中做同样的事情?
提前致谢