{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "Copy Request History" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Page Header #} {# Metric Tiles #}
{# Filters #}
{% for row in rows %} {% empty %} {% endfor %}
{% trans "Request" %} {% trans "Blueprint" %} {% trans "Requester" %} {% trans "Acceptor" %} {% trans "Fulfilled" %} {% trans "Delivered" %} {% trans "Scope" %}
#{{ row.id }}
{{ row.created_at|naturaltime }}
{{ row.type_name }}
ME{{ row.material_efficiency }} · TE{{ row.time_efficiency }} · {{ row.runs_requested }} run(s) · {{ row.copies_requested }} copie(s)
{{ row.requested_by.username }} {% if row.acceptor %} {{ row.acceptor.username }} {% else %} {% endif %} {% if row.fulfilled %} {% trans "Yes" %} {% if row.fulfilled_at %}
{{ row.fulfilled_at|date:'Y-m-d H:i' }}
{% endif %} {% else %} {% trans "No" %} {% endif %}
{% if row.delivered %} {% trans "Yes" %} {% if row.delivered_at %}
{{ row.delivered_at|date:'Y-m-d H:i' }}
{% endif %} {% else %} {% trans "No" %} {% endif %}
{% if row.source_scope == 'personal' %} {% trans "Personal" %} {% elif row.source_scope == 'corporation' %} {% trans "Corporation" %} {% else %} {% endif %}
{% trans "No requests found." %}
{# Pagination #} {% if page_obj.has_other_pages %} {% endif %}
{% endblock %}