{{ title|e }}

{%- if titleimg -%} {%- else %} {%- endif %} {%- if titledesc %}

{{ titledesc|join(' ')|e }}

{%- endif %}

Bill of Materials

Check all parts to get green BOM button in menu, then proceed to the assembly.

Don't worry, the status of your BOM remains even after refreshing the page!

{% for category in bom %}

{{ category|e }}

{%- for id, cnt in bom[category].iteritems() %} {% endfor %}
{{ cnt|e }} x {{ tree[id].name|e }}
{% endfor %}

Things Overview

List of things and their descriptions

{% for thing in tree.itervalues() %}
{%- if thing.id != 1 %}

{{ thing.name|e }}

{%- if thing.desc %}

{{ thing.desc|join(' ')|e }}

{%- endif %} {%- if thing.image %} {%- endif %}
{% endif -%}
{% endfor %}

Assembly Instructions

{% for i in instr %}

Assemble {{ tree[i[0]].name|e }}

{%- if tree[i[0]].using %}

Things needed:

{%- for id, cnt in tree[i[0]].using.iteritems() %} {%- endfor %}
{{ cnt|e }} x {{ tree[id].name|e }}
{% endif %}

Steps:

    {%- for j in i[1:] %} {%- if j.img %}
  1. {{ j.text|e }}
  2. {%- else %}
  3. {{ j.text|e }}
  4. {%- endif %} {%- endfor %}
{% endfor %}
Generated by ThingDOC