{% load i18n %} {% load humanize %} {% load price_formats %}
{% if BUYBACKPROGRAM_TRACK_PREFILL_CONTRACTS %}
{% for contract in untracked_contracts %} {% if contract.status == 'outstanding' %} {% endif %} {% endfor %}
{% trans "Issuer" %} {% trans "Assignee" %} {% trans "Location" %} {% trans "Date issued" %} {% trans "Time pending" %} {% trans "Status" %} {% trans "Tracking #" %} {% trans "Price" %} {% trans "Notes" %}
{{ contract.issuer_name }} {{ contract.assignee_name }} {{ contract.location_name }} {{ contract.date_issued|date:"Y-m-d" }} {{ contract.date_issued|timesince }} {{ contract.status }} {{ contract.title }} {{ contract.price|custom_number_format:2|price }} {% for note in contract.notes %} {% endfor %}
{% endif %}