{% extends 'buybackprogram/base.html' %} {% load i18n %} {% load humanize %} {% load price_formats %} {% block details %}
{% if reservation_hours %} {% blocktrans with hours=reservation_hours %}These requests reserve stock for you for {{ hours }} hours from submission. Create the in-game contract with the tracking number as its title, or release the request if you no longer want the items.{% endblocktrans %} {% else %} {% trans "These requests reserve stock for you until you release them. Create the in-game contract with the tracking number as its title, or release the request if you no longer want the items." %} {% endif %}
| {% trans "Program" %} | {% trans "Tracking #" %} | {% trans "Submitted" %} | {% trans "Price" %} | {% trans "Items" %} | |
|---|---|---|---|---|---|
| {% if pending.program %}{{ pending.program.name }}{% else %}—{% endif %} | {{ pending.tracking_number }} |
{{ pending.created_at|date:"Y-m-d H:i" }} ({{ pending.created_at|timesince }} {% trans "ago" %}) | {{ pending.net_price|custom_number_format:2 }} ISK | {{ pending.items|length }} | {% trans "Release" %} |
|
|||||
| {% trans "Program" %} | {% trans "Tracking #" %} | {% trans "Status" %} | {% trans "Date Issued" %} | {% trans "Price" %} | {% trans "Notes" %} |
|---|---|---|---|---|---|
| {% if tracking.program %}{{ tracking.program.name }}{% else %}—{% endif %} |
{{ tracking.tracking_number }}
|
{{ tracking.contract.status }} | {{ tracking.contract.date_issued|date:"Y-m-d H:i" }} | {{ tracking.contract.price|custom_number_format:2 }} ISK | {% for note in tracking.contract.notes %} {% endfor %} |
| {% trans "No outstanding contracts." %} | |||||
| {% trans "Program" %} | {% trans "Tracking #" %} | {% trans "Status" %} | {% trans "Date Issued" %} | {% trans "Price" %} | {% trans "Notes" %} |
|---|---|---|---|---|---|
| {% if tracking.program %}{{ tracking.program.name }}{% else %}—{% endif %} |
{{ tracking.tracking_number }}
|
{{ tracking.contract.status }} | {{ tracking.contract.date_issued|date:"Y-m-d H:i" }} | {{ tracking.contract.price|custom_number_format:2 }} ISK | {% for note in tracking.contract.notes %} {% endfor %} |
| {% trans "No completed contracts." %} | |||||