{{ building.imagemap|safe }}
{% comment %}
{% if building.get_build_cost %}
Build Cost
{% for costs in building.get_build_cost %}
{% for w in costs %}
{% endfor %}
{% endfor %}
{% endif %}
{% if building.produces or building.trains %}
Produces
{% if building.produces and not building.trains %}
{% for w in building.get_ware_outputs %}
{% endfor %}
{% else %}
{% for wor in building.get_worker_outputs %}
{% endfor %}
{% endif %}
{% endif %}
{% if building.get_stored_wares %}
Stores
{% for costs in building.get_stored_wares %}
{% for w in costs %}
{% endfor %}
{% endfor %}
{% endif %}
{% endcomment %}