{% 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_needs_attention %}
{% else %}
{% 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.extractors %}
Earliest Expiry
{% if planet.has_expired_extractors %}
EXPIRED
{% elif planet.earliest_extractor_expiry %}
Calculating...
{% else %}
Idle
{% endif %} {% else %}
No active extractors
{% 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 %}