{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% block page_title %}{% trans "Industry Slots" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% for char in characters %} {% if char.skills_missing %} {% endif %} {% empty %} {% endfor %}
{% trans "Character" %} {% trans "Manufacturing" %} {% trans "Research" %} {% trans "Reactions" %}
{{ char.name }} {{ char.name }} {% if char.manufacturing.total is not None %} {{ char.manufacturing.available }} / {{ char.manufacturing.total }} {% else %} {% endif %} {% if char.research.total is not None %} {{ char.research.available }} / {{ char.research.total }} {% else %} {% endif %} {% if char.reactions.total is not None %} {{ char.reactions.available }} / {{ char.reactions.total }} {% else %} {% endif %}
{% blocktrans with scope=skills_scope %}Missing scope: {{ scope }}{% endblocktrans %}
{% trans "No characters found." %}
{% endblock content %}