{# Buildings name and image #}
{{ b.displayname }}
|
{# Description #}
{{ b.help }}
{% if b.enhanced_from or b.enhancement %}
{% endif %}
Internal name: "{{ b.name }}"
|
{# Build cost #}
{% for costs in b.get_build_cost %}
{% endfor %}
|
{# Produces #}
{% if b.produces and not b.trains %}
{% for w in b.get_ware_outputs %}
{% endfor %}
{% endif %}
{% if b.trains and not b.produces %}
{% for wor in b.get_worker_outputs %}
{% endfor %}
{% endif %}
|
{## Stored wares #}
{% for costs in b.get_stored_wares %}
{% endfor %}
|
{% endfor %}