{% 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 %}
{% csrf_token %} {# Blueprint Info #}
{{ bp.type_name }}

{{ bp.type_name }}

{{ bp.material_efficiency }} {{ bp.time_efficiency }}
{# Input Fields #}
{# Action Button #}
{% endfor %}
{% else %}

{% trans "No blueprints found" %}

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

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