{% extends 'industry_reforged/base.html' %} {% load i18n %} {% load industry_tags %} {% 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|eve_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|eve_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 %}
{{ char_group.grouper.character_name }}

{{ char_group.grouper.character_name }}

{{ char_group.list|length }} Planets
{% for planet in char_group.list %} {% for product in planet.end_products %} {{ product.name }} {% 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 %}

{{ char_group.grouper.character_name }}'s Planets

{% for planet in char_group.list %}
{% if planet.planet_type %} {{ planet.planet_type.name }} {% endif %}
{{ planet.planet_type.name|default:"Unknown Planet" }}
Level {{ planet.upgrade_level }} CC • {{ planet.num_pins }} Pins
{% if planet.has_expired_extractors or planet.earliest_extractor_expiry %}
Earliest Expiry
{% if planet.has_expired_extractors %}
EXPIRED
{% else %}
Calculating...
{% endif %} {% elif planet.extractors and not planet.basic_factories and not planet.advanced_factories and not planet.high_tech_factories %}
Status
Idle Extractor
{% else %}
Status
{% if planet.high_tech_factories %}
P3/P4 Factory
{% elif planet.advanced_factories or planet.basic_factories %}
Factory Planet
{% else %}
Storage Only
{% endif %} {% endif %}
{% if planet.has_full_storage %}
{% 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 %}
{% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}