{% trans "My Industry Jobs" %}
Activity
Item
Runs
Success Probability
Cost
Status
End Date
{% for job in active_jobs %}
{{ job.activity_name }}
{% if job.product_type %}
{{ job.product_type.name }}
{% elif job.blueprint_type %}
{{ job.blueprint_type.name }}
{% else %}
Unknown Item
{% endif %}
{{ job.runs }}
{% if job.probability %}{{job.probability|floatformat:2}}%{% endif %}
{{ job.cost|eve_isk }}
{% if job.is_ready %}Ready{% else %}{{ job.status|title }}{% endif %}
{{ job.end_date|date:"Y-m-d H:i" }}
{% endfor %}
Activity
Item
Runs
Successful Runs
Cost
Status
End Date
{% for job in history_jobs %}
{{ job.activity_name }}
{% if job.product_type %}
{{ job.product_type.name }}
{% elif job.blueprint_type %}
{{ job.blueprint_type.name }}
{% else %}
Unknown Item
{% endif %}
{{ job.runs }}
{{ job.successful_runs|default_if_none:"-" }}
{{ job.cost|eve_isk }}
{{ job.status|title }}
{{ job.end_date|date:"Y-m-d H:i" }}
{% endfor %}
{% if planets %}
{% regroup planets by character as char_planets %}
{% for char_group in char_planets %}
{{ char_group.grouper.character_name }}
{{ char_group.list|length }} Planets
{% for planet in char_group.list %}
{% for product in planet.end_products %}
{% endfor %}
{% endfor %}
{% if char_group.list.0.character_has_expired_extractors %}
{% endif %}
{% if char_group.list.0.character_has_full_storage %}
{% endif %}
{% if not char_group.list.0.character_needs_attention %}
{% endif %}
{% endfor %}
{% for char_group in char_planets %}
Back
{{ char_group.grouper.character_name }}'s Planets
{% for planet in char_group.list %}
{% if planet.planet_type %}
{% endif %}
{{ planet.planet_type.name|default:"Unknown Planet" }}
Level {{ planet.upgrade_level }} CC • {{ planet.num_pins }} Pins
{% if planet.extractors %}
Earliest Expiry
{% if planet.has_expired_extractors %}
EXPIRED
{% elif planet.earliest_extractor_expiry %}
Calculating...
{% else %}
Idle
{% endif %}
{% else %}
No active extractors
{% endif %}
{% if planet.has_full_storage %}
{% endif %}
{% if planet.extractors %}
{% for pin in planet.extractors %}
{% if pin.product_type %}
{% else %}
{% endif %}
{{ pin.product_type.name|default:"Unknown" }}
{% if pin.is_expired %}
Expired
{% else %}
Running
{% endif %}
{% endfor %}
{% else %}
No extractors installed
{% endif %}
{% if planet.basic_factories or planet.advanced_factories or planet.high_tech_factories %}
{% if planet.basic_factories %}
BASIC (T1)
{% for pin in planet.basic_factories %}
{% if pin.product_type %}
{{ pin.product_type.name }}
{% else %}
No Schematic
{% endif %}
{{ pin.status_label }}
{% endfor %}
{% endif %}
{% if planet.advanced_factories %}
ADVANCED (T2/T3)
{% for pin in planet.advanced_factories %}
{% if pin.product_type %}
{{ pin.product_type.name }}
{% else %}
No Schematic
{% endif %}
{{ pin.status_label }}
{% endfor %}
{% endif %}
{% if planet.high_tech_factories %}
HIGH TECH (T4)
{% for pin in planet.high_tech_factories %}
{% if pin.product_type %}
{{ pin.product_type.name }}
{% else %}
No Schematic
{% endif %}
{{ pin.status_label }}
{% endfor %}
{% endif %}
{% else %}
No factories installed
{% endif %}
{% for pin in planet.command_centers %}
Command Center
{% endfor %}
{% for pin in planet.storage_pins %}
{{ pin.type.name|default:"Storage" }}
{{ pin.contents_volume|floatformat:0|intcomma }} / {{ pin.capacity|floatformat:0|intcomma }} m³
{% endfor %}
{% if not planet.command_centers and not planet.storage_pins %}
No infrastructure found
{% endif %}
{% 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 %}