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

{{ title }}

{% trans "My Industry Jobs" %}

{% for job in active_jobs %} {% endfor %}
Activity Item Runs Success Probability Cost Status End Date
{{ job.activity_name }} {% if job.product_type %}
{{ job.product_type.name }} {{ job.product_type.name }}
{% elif job.blueprint_type %}
{{ job.blueprint_type.name }} {{ job.blueprint_type.name }}
{% else %} Unknown Item {% endif %}
{{ job.runs }} {% if job.probability %}{{job.probability|floatformat:2}}%{% endif %} {{ job.cost|floatformat:2|intcomma}} ISK {% if job.is_ready %}Ready{% else %}{{ job.status|title }}{% endif %} {{ job.end_date|date:"Y-m-d H:i" }}
{% for job in history_jobs %} {% endfor %}
Activity Item Runs Successful Runs Cost Status End Date
{{ job.activity_name }} {% if job.product_type %}
{{ job.product_type.name }} {{ job.product_type.name }}
{% elif job.blueprint_type %}
{{ job.blueprint_type.name }} {{ job.blueprint_type.name }}
{% else %} Unknown Item {% endif %}
{{ job.runs }} {{ job.successful_runs|default_if_none:"-" }} {{ job.cost|floatformat:2|intcomma}} ISK {{ job.status|title }} {{ job.end_date|date:"Y-m-d H:i" }}

Planetary Interaction

{% if planets %} {% regroup planets by character as char_planets %}
{% for char_group in char_planets %}

{% for planet in char_group.list %}

⛏️ Extractors
{% for pin in planet.pins.all %} {% if pin.is_extractor %}
{% if pin.type %} {{ pin.type.name }} {% endif %} {% if pin.product_type %} {{ pin.product_type.name }} {% endif %}
{% if pin.is_expired %} EXPIRED {% else %} EXTRACTING {% endif %}
{% if pin.expiry_time %}
{% if pin.is_expired %} Finished {% else %} {{ pin.expiry_time|date:"Y-m-d H:i" }} UTC
({{ pin.expiry_time|timeuntil }} left) {% endif %}
{% endif %}
{% endif %} {% endfor %}
🏭 Factories
{% for factory in planet.factory_summary %}
{{ factory.count }}x {% if factory.type %} {{ factory.type.name }} {% endif %} {% if factory.product_type %} {{ factory.product_type.name }} {% endif %}
Running
{% empty %}
No factories
{% endfor %}
📦 Infrastructure
{% for pin in planet.pins.all %} {% if pin.is_storage %}
{% if pin.type %} {{ pin.type.name }}
{{ pin.type.name }}
{% endif %}
{% endif %} {% endfor %}
{% endfor %}
{% endfor %}
{% else %}
No Planetary Interaction data found. Ensure your PI characters are authorized with the esi-planets.manage_planets.v1 scope via the Tokens / Services page, and click "Refresh PI Data".
{% endif %}
{% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}