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

{{ title }}

{% trans "My Industry Jobs" %}

{% for job in jobs %} {% endfor %}
Activity Item Runs Success Probability Successful Runs Cost Status End Date
{{ job.activity_id }} {% 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.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|timeuntil }} left{% endif %}
{% endif %}
{% endif %} {% endfor %}
🏭 Factories
{% for pin in planet.pins.all %} {% if pin.is_factory %}
{% if pin.type %} {{ pin.type.name }} {% endif %} {% if pin.product_type %} {{ pin.product_type.name }} {% endif %}
Running
{% endif %} {% 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 %} {% endblock %}