{% 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|floatformat:2|intcomma}} 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|floatformat:2|intcomma}} 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 %}
{% for planet in char_group.list %}
⛏️ Extractors
{% for pin in planet.pins.all %}
{% if pin.is_extractor %}
{% if pin.type %}

{% endif %}
{% if pin.product_type %}

{% 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 %}

{% endif %}
{% if factory.product_type %}

{% endif %}
Running
{% empty %}
No factories
{% endfor %}
📦 Infrastructure
{% for pin in planet.pins.all %}
{% if pin.is_storage %}
{% if pin.type %}
{{ 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 %}