标签: python django django-templates
我已经从视图字典传递到模板页面。如何在模板内部检查字典的大小是否大于0,如果它大于0以获取第一个键值对?
答案 0 :(得分:4)
{% if some_dict %} Some (k, v) - {{ some_dict.items.0 }} {% endif %}
请注意,Python dicts是无序的,因此没有“第一个”k-v对。
你确定模板是这个逻辑的好地方吗?我不是。