3
如何在Django模板的词典中遍历词典?
我的字典看起来像这样(字典中的字典): {'0': { 'chosen_unit': <Unit: Kg>, 'cost': Decimal('10.0000'), 'unit__name_abbrev': u'G', 'supplier__supplier': u"Steve's Meat Locker", 'price': Decimal('5.00'), 'supplier__address': u'No\r\naddress here', 'chosen_unit_amount': u'2', 'city__name': u'Joburg, Central', 'supplier__phone_number': u'02299944444', 'supplier__website': None, 'supplier__price_list': u'', 'supplier__email': u'ss.sss@ssssss.com', 'unit__name': u'Gram', 'name': u'Rump Bone', }} 现在,我只是想在模板上显示信息,但是我很挣扎。我的模板代码如下: {% if landing_dict.ingredients %} <hr> {% for ingredient in landing_dict.ingredients %} …