Mon dictionnaire ressemble à ceci (un dictionnaire dans un dictionnaire) :
{'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',
}}
Maintenant, j'essaie simplement d'afficher les informations sur mon modèle, mais j'ai du mal. Mon code pour le modèle ressemble à ceci :
{% if landing_dict.ingredients %}
<hr>
{% for ingredient in landing_dict.ingredients %}
{{ ingredient }}
{% endfor %}
<a href="stackoverflow.com/">Print {{ landing_dict.recipe_name }}</a>
{% else %}
Please search for an ingredient below
{% endif %}
Je vois juste '0' sur mon modèle ?
J'ai aussi essayé :
{% for ingredient in landing_dict.ingredients %}
{{ ingredient.cost }}
{% endfor %}
Cela n'affiche même pas un résultat.
J'ai pensé que j'avais peut-être besoin d'itérer un niveau plus profond et j'ai essayé ceci :
{% if landing_dict.ingredients %}
<hr>
{% for ingredient in landing_dict.ingredients %}
{% for field in ingredient %}
{{ field }}
{% endfor %}
{% endfor %}
<a href="stackoverflow.com/">Print {{ landing_dict.recipe_name }}</a>
{% else %}
Please search for an ingredient below
{% endif %}
Mais cela n'affiche rien.
Qu'est-ce que je fais de mal ?