{% load i18n %} {% load static %} {% load humanize %} {% load evelinks %} {% load ledger %} {% if character %}

{% trans "Storage" %}

{% for facility_id, facility in character.storage.items %} {% for content in facility.contents %} {% endfor %} {% endfor %}
{% trans "Product" %} {% trans "Product Name" %} {% trans "Amount" %}
{{ facility.facility_name }} {{ content.product_name }} {{ content.amount|intcomma }}

{% trans "Facility" %}

{% for facility in character.facilities %} {% endfor %}
{% trans "Facility" %} {% trans "Input" %} {% trans "Output" %} {% trans "Active" %}
{{ facility.facility_name }} {% for input in facility.input_icons %} {% if input.count > 1 %} x{{ input.count }} {% endif %} {% endfor %} {% if facility.output_icon %} {% else %} {% trans "No output" %} {% endif %}
{% else %} {% trans "No data found..." %} {% endif %}