{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "My Copy Requests" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Page Header #} {# Metric Tiles #}
{# Tabs #}
{# Active Tab #}
{% if my_requests %}
{% trans "Blueprint" %} {% trans "Status" %} {% trans "Details" %} {% trans "Progress" %} {% trans "Action" %}
{% for req in my_requests %} {% if not req.is_history %}
{# Blueprint Type #}
{{ req.type_name }}
{{ req.type_name }}
ME {{ req.material_efficiency }} TE {{ req.time_efficiency }}
{{ req.created_at|naturaltime }}
{# Status #}
{{ req.status_label }}
{# Details: Copies/Runs/ME/TE #}
{% trans "Order" %}
{{ req.copies_requested }} {% trans "copies" %} {{ req.runs_requested }} {% trans "runs" %}
{# Progress / Alert #}
{% if req.accepted_offer %} {% trans "Accepted" %} {% elif req.cond_accepted %} {% trans "Conditions Accepted" %} {% elif req.cond_waiting_builder %} {% trans "Awaiting Confirmation" %} {% elif req.cond_waiting_buyer %} {% trans "Ready to Accept" %} {% elif req.cond_offers %} {% trans "Offers Pending" %} {% endif %}
{# Actions #}
{% if req.chat_actions %} {% for action in req.chat_actions %} {% endfor %} {% endif %} {% if req.can_cancel %}
{% csrf_token %}
{% endif %}
{% endif %} {% endfor %}
{% else %}

{% trans "No active requests" %}

{% trans "Create a new copy request to get started." %}

{% endif %}
{# History Tab #}
{% if history_requests %}
{% trans "Blueprint" %} {% trans "Status" %} {% trans "Details" %} {% trans "Completed" %}
{% for req in history_requests %}
{# Blueprint Type #}
{{ req.type_name }}
{{ req.type_name }}
ME {{ req.material_efficiency }} TE {{ req.time_efficiency }}
{{ req.closed_at|naturaltime }}
{# Status #}
{{ req.status_label }}
{# Details #}
{% trans "Order" %}
{{ req.copies_requested }} {% trans "copies" %} {{ req.runs_requested }} {% trans "runs" %}
{# Completed Date #}
{{ req.closed_at|naturaltime }}
{% endfor %}
{% else %}

{% trans "No history" %}

{% trans "Completed requests will appear here." %}

{% endif %}
{% include "indy_hub/includes/bp_chat_modal.html" %} {% endblock %} {% block extra_javascript %} {{ block.super }} labels: { buyer: '{% trans "You" %}', seller: '{% trans "Builder" %}', system: '{% trans "System" %}' } }); {% endblock %}