{% for b in buildings %} {% endfor %}
Image Description Build cost Produces Stores
{{ b.displayname|title }}
{{b.displayname}}
{{ b.help }} {% for costs in b.get_build_cost %} {% for w in costs %} {{ w.name }} {% endfor %}
{% endfor %}
{% if b.produces and not b.trains %} {% for w in b.get_ware_outputs %} {{ w.name }} {% endfor %} {% endif %} {% if b.trains and not b.produces %} {% for wor in b.get_worker_outputs %} {{ wor.name }} {% endfor %} {% endif %} {% for costs in b.get_stored_wares %} {% for w in costs %} {{ w.name }} {% endfor %}
{% endfor %}