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

Crafting Overview

{% for item in items %} {% if item.primary_recipee %} {% with item.primary_recipee as recipee %} {% endwith %} {% endif %} {% endfor %}
Source   Crafts into Also used in
{% if item.icon %}{% endif %} {{ item.name }} {% if item.sell_price %}
Sell: {{item.sell_price}} cr{% endif %}
{% 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 %}
    {% for i1 in item.crafting_used_in %} {% with i1.crafting.output as ci %} {% if ci.pk != recipee.output.pk %}
  • {{ ci.html }}
  • {% endif %} {% for i2 in ci.crafting_used_in %}
  • {{ i2.crafting.output.html }} ({{ci.html}})
  • {% endfor %} {% endwith %} {% endfor %}
 
{% endblock context %}