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

{% trans "Director Control Panel" %}

Inventory Analytics Wallets Configurations
{% for order in all_orders %} {% empty %} {% endfor %}
Order ID Character Total Price Payment Ref Status Progress Action
#{{ order.id }} {{ order.character.character_name }} {{order.total_price|eve_isk }} {% if order.payment_reference %} {{ order.payment_reference }} {% if order.is_paid %} Paid {% else %} Unpaid {% endif %} {% else %} - {% endif %} {% if order.status == 'READY' %} {{ order.get_status_display }} {% else %} {{ order.get_status_display }} {% endif %}
{{ order.progress_percent|floatformat:2 }}%
View {% if not order.is_paid %}
{% csrf_token %}
{% endif %} {% if order.status == 'READY' %}
{% csrf_token %}
{% endif %}
No orders found.
{% for task in all_tasks %} {% empty %} {% endfor %}
Item Quantity Status Priority Assigned To Reward Hidden
{{ task.item_type.name }} {{ task.quantity }} {{ task.get_status_display }} {{ task.priority }} {{ task.assigned_to.character_name|default:"-" }} {% if task.builder_reward %}{{ task.builder_reward|eve_isk }}{% else %}-{% endif %} {% if task.hidden %}{% else %}{% endif %}
No tasks found.
{% trans "Payout Summary by Builder" %}
{% for summary in payout_summary %} {% empty %} {% endfor %}
{% trans "Builder" %} {% trans "Completed Tasks" %} {% trans "Total Pending Payout" %} {% trans "Action" %}
{{ summary.assigned_to__character_name }} {{ summary.task_count }} {{ summary.total_reward|eve_isk }}
{% csrf_token %}
{% trans "No pending payouts!" %}
{% trans "Recent Completed Tasks with Rewards" %}
{% trans "Showing up to 200 tasks" %}
{% for task in payout_tasks %} {% empty %} {% endfor %}
{% trans "Item" %} {% trans "Qty" %} {% trans "Assigned To" %} {% trans "Reward" %} {% trans "Completed" %}
{{ task.item_type.name }} {{ task.item_type.name }}
{{ task.quantity }} {{ task.assigned_to.character_name }} {{ task.builder_reward|eve_isk }} {{ task.completed_at|date:"Y-m-d H:i" }}
{% trans "No completed tasks with rewards." %}
{% trans "Active Payout Batches" %}
{% for batch in payout_batches %} {% if batch.status == 'PENDING' %} {% endif %} {% empty %} {% endfor %}
{% trans "Reference" %} {% trans "Builder" %} {% trans "Total Amount" %} {% trans "Status" %} {% trans "Generated On" %} {% trans "Action" %}
{{ batch.payment_reference }} {{ batch.builder.character_name }} {{ batch.total_amount|eve_isk }} {{ batch.status }} {{ batch.created_at|date:"Y-m-d H:i" }}
{% csrf_token %}
{% trans "No active payout batches." %}
{% endblock %}