Edit
{% if item.parts|length > 0 %}
{% include 'parts.html' with context %}
{% endif %}
{% if item.barter_scheme|length > 0 %}
Barter Requirements:
{% for scheme in item.barter_scheme %}
{% for req in scheme %}
-
{{ req.count }} ×
{% endfor %}
{% endfor %}
{% endif %}
{% if item.quest_requirement %}
Quest Requirement:
{{ item.quest_requirement.quest }}
{% if item.quest_requirement.type == 'success' %}
{% elif item.quest_requirement.type == 'fail' %}
{% elif item.quest_requirement.type == 'started' %}
{% endif %}
{% endif %}