{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% block details %}

{% trans "Director Control Panel" %}

Inventory Analytics Configurations

{% trans "Active Member Orders" %}

{% for order in all_orders %} {% empty %} {% endfor %}
Order ID Character Total Price Status Progress Action
#{{ order.id }} {{ order.character.character_name }} {{order.total_price|floatformat:2|intcomma }} ISK {{ order.get_status_display }}
{{ order.progress_percent|floatformat:2 }}%
No orders found.

{% trans "Production Task Management" %}

{% for task in all_tasks %} {% empty %} {% endfor %}
Item Quantity Status Priority Assigned To Hidden
{{ task.item_type.name }} {{ task.quantity }} {{ task.get_status_display }} {{ task.priority }} {{ task.assigned_to.character_name|default:"-" }} {% if task.hidden %}{% else %}{% endif %}
No tasks found.
{% endblock %}