1👍
✅
They’re not missing, they’re not part of card
, they’re part of an editions
object, so you need to iterate over that list.
{% for card in data %}
{% for edition in card.editions %}
<td> {{edition.set }}</td>
{% endfor %}
{% endfor %}
Source:stackexchange.com