{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load dict_get %} {% block page_title %}{{ scope_title }}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %} {% trans "Blueprint Reaction" as blueprint_reaction_label %} {% trans "Blueprint Original" as blueprint_original_label %} {% trans "Blueprint Copy" as blueprint_copy_label %} {% trans "Unknown Blueprint" as unknown_blueprint_label %}
{# Corporate guidance now lives on token management page #}
{% trans 'Reset Filters' %}
{% if blueprints %}
{{ statistics.total_count|default:0 }}
{% trans "Total Quantity" %}
{{ statistics.original_count|default:0 }}
{% trans "Original BPOs" %}
{{ statistics.copy_count|default:0 }}
{% trans "Blueprint Copies" %}
{% for bp in blueprints %}
{% comment %} Reaction BPs always show original icon {% endcomment %} {% if bp.is_reaction %} {{ bp.type_name|default:blueprint_reaction_label }} {% else %} {% if bp.is_original %} {{ bp.type_name|default:blueprint_original_label }} {% else %} {{ bp.type_name|default:blueprint_copy_label }} {% endif %} {% endif %}
{{ bp.type_name|default:unknown_blueprint_label }}
{% if bp.is_reaction %} {% trans 'Reaction' %} {% trans 'unlimited' %} {{ bp.total_quantity }} {% else %} {% if bp.orig_quantity > 0 %} {{ bp.orig_quantity }} {% trans 'Original' %} {% trans 'unlimited' %} {% endif %} {% if bp.copy_quantity > 0 %} {{ bp.copy_quantity }} {% trans 'Copy' %} {% if bp.runs > 0 %} {{ bp.runs }} {% trans 'runs left' %} {% endif %} {% endif %} {% if bp.total_quantity > 0 %} {{ bp.total_quantity }} {% endif %} {% endif %}
{# end badges/title row #}
{{ bp.owner_display|default:bp.owner_id }} {% if bp.location_name %} {{ bp.location_name }} {% elif bp.location_path %} {{ bp.location_path }} {% endif %} {% trans "View Craft" %}
{% if not bp.is_reaction %}
ME {{ bp.material_efficiency }}%
TE {{ bp.time_efficiency }}%
{% endif %}
{% endfor %}
{# Preserve other filters #}
{% if blueprints.has_other_pages %} {% endif %}
{% else %}
{% trans "No Blueprints Found" %}

{% trans "You don't have any blueprints yet, or your ESI data hasn't been synchronized." %}

{% trans "Setup ESI Access" %}
{% endif %}
{% trans "Legend" %}
{% endblock content %} {% block extra_javascript %} {% endblock extra_javascript %}