{% 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 %}
{% trans "Review recent requests and who accepted them." %}
{% trans "Total" %}
{{ metrics.total|default:0 }}
{% trans "All requests ever submitted." %}{% trans "Open" %}
{{ metrics.open|default:0 }}
{% trans "Requests still in progress." %}{% trans "Fulfilled" %}
{{ metrics.fulfilled|default:0 }}
{% trans "Copies produced and confirmed." %}{% trans "Delivered" %}
{{ metrics.delivered|default:0 }}
{% trans "Blueprints handed off to the buyer." %}{% blocktrans count counter=total_results %} {{ counter }} request matches the current filters. {% plural %} {{ counter }} requests match the current filters. {% endblocktrans %}
{% blocktrans count counter=rows|length %} {{ counter }} request matches the current filters. {% plural %} {{ counter }} requests match the current filters. {% endblocktrans %}
| {% trans "Request" %} | {% trans "Blueprint" %} | {% trans "Requester" %} | {% trans "Acceptor" %} | {% trans "Fulfilled" %} | {% trans "Delivered" %} | {% trans "Scope" %} |
|---|---|---|---|---|---|---|
|
#{{ row.id }}
{{ row.created_at|naturaltime }}
{{ row.created_at|date:'Y-m-d H:i' }}
|
{{ row.type_name }}
|
{{ row.requested_by.username }} | {% if row.acceptor %} {{ row.acceptor.username }} {% else %} {% trans "Unassigned" %} {% 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 %} {% trans "Unknown" %} {% endif %} |
|
{% trans "No requests found." %}
{% trans "Try widening the filters or clearing the search term." %}
|
||||||