{% extends 'buybackprogram/page.html' %}
{% load i18n %}
{% load humanize %}
{% load price_formats %}
{% block body %}
Outstanding count: |
{{values.outstanding_count}} |
Outstanding value: |
{{values.outstanding|floatformat:0|intcomma|price}} |
Total bought count: |
{{values.finished_count}} |
Total bought: |
{{values.finished|floatformat:0|intcomma|price}} |
{% if BUYBACKPROGRAM_TRACK_PREFILL_CONTRACTS %}
Untracked count: |
{{values.untracked_count}} |
{% endif %}
{% if values.untracked_count > 0 %}
Warning: You have {{values.untracked_count}} outstanding contracts that start with the buyback prefill text but do not match any tracking objects in your programs! These contracts are possibly scam contracts trying to identify as valid buyback contracts.
{% endif %}
{% trans "Issuer" %} |
{% trans "Assignee" %} |
{% trans "Location" %} |
{% trans "Date issued" %} |
{% trans "Time pending" %} |
{% trans "Status" %} |
{% trans "Tracking #" %} |
{% trans "Price" %} |
{% trans "Notes" %} |
{% trans "Action" %} |
{% for tracking in contracts %}
{% if tracking.contract.status == 'outstanding' %}
{{tracking.contract.issuer_name}} |
{{tracking.contract.assignee_name}} |
{{tracking.contract.location_name}} |
{{tracking.contract.date_issued}} |
{{tracking.contract.date_issued|timesince }} |
{{tracking.contract.status}} |
{{tracking.tracking_number}} |
{{tracking.contract.price|floatformat:0|intcomma|price}} |
{% for note in tracking.contract.notes %}
{% endfor %}
|
Details
|
{% endif %}
{% endfor %}
{% trans "Issuer" %} |
{% trans "Assignee" %} |
{% trans "Location" %} |
{% trans "Date issued" %} |
{% trans "Time pending" %} |
{% trans "Status" %} |
{% trans "Tracking #" %} |
{% trans "Price" %} |
{% trans "Notes" %} |
{% trans "Action" %} |
{% for tracking in contracts %}
{% if tracking.contract.status == 'finished' %}
{{tracking.contract.issuer_name}} |
{{tracking.contract.assignee_name}} |
{{tracking.contract.location_name}} |
{{tracking.contract.date_issued}} |
{{tracking.contract.date_issued|timesince }} |
{{tracking.contract.status}} |
{{tracking.tracking_number}} |
{{tracking.contract.price|floatformat:0|intcomma|price}} |
{% for note in tracking.contract.notes %}
{% endfor %}
|
Details
|
{% endif %}
{% endfor %}
{% trans "Issuer" %} |
{% trans "Assignee" %} |
{% trans "Location" %} |
{% trans "Date issued" %} |
{% trans "Time pending" %} |
{% trans "Status" %} |
{% trans "Description" %} |
{% trans "Price" %} |
{% trans "Notes" %} |
{% if BUYBACKPROGRAM_TRACK_PREFILL_CONTRACTS %}
{% for contract in untracked_contracts %}
{% if contract.status == 'outstanding' %}
{{contract.issuer_name}} |
{{contract.assignee_name}} |
{{contract.location_name}} |
{{contract.date_issued}} |
{{contract.date_issued|timesince }} |
{{contract.status}} |
{{contract.title}} |
{{contract.price|floatformat:0|intcomma|price}} |
{% for note in contract.notes %}
{% endfor %}
|
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% block extra_javascript %}
{% endblock %}
{% block extra_css %}
{% endblock %}
{% block extra_script %}
{% endblock %}