{% extends "scon/base.html" %} {% block context %}

Crafting Overview

{% for item in items %} {% if item.primary_recipee %}
{% if item.icon %}{% endif %} {{ item.name }} {% if item.sell_price %}
Sell: {{item.sell_price}} cr{% endif %}
{% with item.primary_recipee as recipee %}
 
{% if recipee.amount > 1 %}{{ recipee.amount }}{% endif %}
{% if recipee.output.icon %}{% endif %} {{ recipee.output.html }} {% if recipee.output.sell_price %}
Sell: {{recipee.output.sell_price}} cr{% endif %}
    {% for ingredient in recipee.ingredients %}
  • {{ ingredient.amount }} x {{ ingredient.item.html }}
  • {% endfor %}
{% endwith %}
  {% endif %} {% endfor %} {% endblock context %}