{% for recipe in recipes %}
{% if recipe.status == 'ready' %} ✅ Ready {% elif recipe.status == 'partial' %} ⚠️ Partial {% else %} ❌ Missing {% endif %} {{ recipe.name }} {% if recipe.type == 'meta_recipe' %} {{ recipe.gear }} {% endif %}
{% if recipe.type == 'meta_recipe' %} {% for slot in recipe.slots %}
{{ slot.name }} {% if not slot.required %}(optional){% endif %}
{% for opt in slot.available_options %} {{ opt.ingredient }} {% endfor %} {% for opt in slot.missing_options %} {{ opt.ingredient }} {% endfor %}
{% endfor %} {% if recipe.base_missing %}
Missing base: {% for b in recipe.base_missing %}{{ b.ingredient }} ({{ b.needed }}){% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %} {% endif %} {% if recipe.warnings %}
{% for w in recipe.warnings %} ⚠ {{ w }}
{% endfor %}
{% endif %}
{% empty %}
📖

No recipes yet.

{% endfor %}