{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% load industry_tags %} {% block details %}
{% trans "Set corporate rules for production, material efficiency, and pricing overrides." %}
{% if pricing_config.default_discount_percent > 0 %} {{ pricing_config.default_discount_percent }}% OFF {% else %} 0% (Jita Price) {% endif %}
{{ pricing_config.builder_reward_percent }}%
{% trans "Applied automatically to all member orders and tasks unless overridden." %}
{% trans "Industry Tax Rate" %}: {{ tax_config.industry_tax_rate }}%
{% trans "Broker Fee Rate" %}: {{ tax_config.broker_fee_rate }}%
| {% trans "Hangar Name/Flag" %} | {% trans "Location ID" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|
| {{ hangar.description|default:hangar.flag_id }} | {{ hangar.location_id }} | {% if hangar.is_active %} {% trans "Active" %} {% else %} {% trans "Disabled" %} {% endif %} | |
| {% trans "No hangars discovered. Click 'Discover Hangars' to scan your corporate assets." %} | |||
| {% trans "Task Name" %} | {% trans "Status" %} | {% trans "Last Run" %} | {% trans "Duration" %} | {% trans "Message" %} |
|---|---|---|---|---|
| {{ log.task_name }} | {% if log.status == 'SUCCESS' %} Success {% elif log.status == 'FAILED' %} Failed {% else %} Running {% endif %} | {{ log.last_run|naturaltime }} | {{ log.duration_seconds|floatformat:2 }}s | {% if log.status == 'FAILED' and log.message %} {% else %} {{ log.message|truncatechars:50 }} {% endif %} |
| {% trans "No tasks have run yet." %} | ||||