{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% block page_title %}{% trans "Request Blueprint Copy" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Page Header #} {# Results Counter & Filters #}
{{ page_obj.paginator.count }} {% trans "blueprint(s)" %}
{% trans "Order by:" %}
{% trans "Reset" %}
{# Blueprint Grid #}
{% if page_obj.object_list %}
{% for bp in page_obj.object_list %}
{{ bp.type_name }}

{{ bp.type_name }}

{{ bp.material_efficiency }} {{ bp.time_efficiency }}
{% if bp.copy_request_preview.max_runs_per_copy %}
{% trans "Max runs per copy" %}: {{ bp.copy_request_preview.max_runs_per_copy }}
{% endif %}
{% endfor %}
{% else %}

{% trans "No blueprints found" %}

{% trans "Try adjusting your filters." %}

{% endif %}
{# Pagination #} {% if page_obj.has_other_pages %} {% endif %}
{% endblock %}