Mój słownik wygląda następująco (Słownik w słowniku):
{'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',
}}
Teraz próbuję tylko wyświetlić informacje w moim szablonie, ale mam problemy. Mój kod szablonu wygląda następująco:
{% if landing_dict.ingredients %}
<hr>
{% for ingredient in landing_dict.ingredients %}
{{ ingredient }}
{% endfor %}
<a href="/">Print {{ landing_dict.recipe_name }}</a>
{% else %}
Please search for an ingredient below
{% endif %}
Po prostu pokazuje mi „0” w moim szablonie?
Próbowałem też:
{% for ingredient in landing_dict.ingredients %}
{{ ingredient.cost }}
{% endfor %}
To nawet nie wyświetla wyniku.
Pomyślałem, że być może potrzebuję iteracji o jeden poziom głębiej, więc spróbowałem tego:
{% if landing_dict.ingredients %}
<hr>
{% for ingredient in landing_dict.ingredients %}
{% for field in ingredient %}
{{ field }}
{% endfor %}
{% endfor %}
<a href="/">Print {{ landing_dict.recipe_name }}</a>
{% else %}
Please search for an ingredient below
{% endif %}
Ale to nic nie wyświetla.
Co ja robię źle?
values[0]
zamiast tego musiałemvalues.items