{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load static %} {% load dict_get %} {% block page_title %}{% trans "My Blueprints" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% trans 'Reset Filters' %}
{% if blueprints %}
{{ statistics.total_count|default:0 }}
{% trans "Total Blueprints" %}
{{ statistics.original_count|default:0 }}
{% trans "Original BPOs" %}
{{ statistics.copy_count|default:0 }}
{% trans "Blueprint Copies" %}
{{ statistics.stack_blueprints|default:0 }}
{% trans "Blueprint Stacks" %}
{% for bp in blueprints %}
{% comment %} Reaction BPs always show original icon {% endcomment %} {% if bp.is_reaction %} {{ bp.type_name|default:'Blueprint Reaction' }} {% else %} {% if bp.is_original %} {{ bp.type_name|default:'Blueprint Original' }} {% else %} {{ bp.type_name|default:'Blueprint Copy' }} {% endif %} {% endif %}

{{ bp.type_name|default:"Unknown Blueprint" }}

{% 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.character_name|default:bp.character_id }} {% trans "View Craft" %} {# Remove location display #} {# {{ bp.location_path }} #}
ME {{ bp.material_efficiency }}%
TE {{ bp.time_efficiency }}%
{% endfor %}
{# Conserver les autres filtres #}
{% 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 %}