{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "My Copy Requests" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ metrics.open|default:0 }}
{% trans "Waiting for builders" %}
{% trans "Requests with no accepted offers yet." %}
{{ metrics.action_required|default:0 }}
{% trans "Your action" %}
{% trans "Review conditional offers waiting for approval." %}
{{ metrics.awaiting_delivery|default:0 }}
{% trans "In delivery" %}
{% trans "A builder accepted—awaiting handover." %}
{{ metrics.delivered|default:0 }}
{% trans "Completed" %}
{% trans "Deliveries marked as finished." %}
{% if my_requests %}
{% for req in my_requests %}
{{ req.type_name }}

{{ req.type_name }}

{{ req.created_at|naturaltime }}

{{ req.status_label }}
ME {{ req.material_efficiency }} TE {{ req.time_efficiency }}
{% trans "Copies" %} {{ req.copies_requested }}
{% trans "Runs" %} {{ req.runs_requested }}

{{ req.status_hint }}

{% if req.accepted_offer %}
{% blocktrans with builder=req.accepted_offer.owner_username %}Accepted by {{ builder }}{% endblocktrans %} {% if req.accepted_offer.message %}

“{{ req.accepted_offer.message }}”

{% endif %}
{% elif req.cond_accepted %}
{% blocktrans with builder=req.cond_accepted.owner_username %}Conditional offer accepted from {{ builder }}{% endblocktrans %} {% if req.cond_accepted.message %}

“{{ req.cond_accepted.message }}”

{% endif %}
{% endif %} {% if req.cond_offers %}
{% for offer in req.cond_offers %}
{% blocktrans with builder=offer.owner_username %}Offer from {{ builder }}{% endblocktrans %} {% if offer.message %}

“{{ offer.message }}”

{% endif %}
{% csrf_token %}
{% endfor %}
{% endif %} {% if req.delivered %}
{% trans "Delivery confirmed. Blueprints are in your hands." %}
{% endif %}
{% if req.can_cancel %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% else %}

{% trans "No copy requests yet" %}

{% trans "Submit your first request to see progress updates here." %}

{% trans "Browse available blueprints" %}
{% endif %}
{% endblock %}