{% extends 'buybackprogram/base.html' %}
{% load i18n %}
{% load humanize %}
{% load price_formats %}
{% load static %}
{% block details %}
{% for note in notes %}
{{note.message}}
{% endfor %}
Contract information:
{% trans "Date issued" %} |
{{contract.date_issued}} |
{% trans "Issued from" %} |
{{contract.issuer_name}} |
{% trans "Issued to" %} |
{{contract.assignee_name}} |
{% trans "Time pending" %} |
{{contract.date_issued|timesince }} |
{% trans "Status" %} |
{{contract.status}} |
{% trans "Tracking #" %} |
{{contract.title}} |
{% trans "Asking price" %} |
{{contract.price|floatformat:0|intcomma}} ISK |
{% trans "Accepted Location(s)" %}
{% for location in tracking.program.location.all %}
{{location.location_display_name}}
|
{% endfor %}
{% trans "Invoice" %}
Price before expenses |
{{tracking.value|floatformat:0|intcomma}} ISK |
Program taxes |
{{tracking.taxes|floatformat:0|intcomma}} ISK |
Hauling cost |
{{tracking.hauling_cost|floatformat:0|intcomma}} ISK |
Donation amount |
{{tracking.donation|floatformat:0|intcomma}} ISK |
Net price |
{% if tracking.net_price >= 0 %}
{{tracking.net_price|floatformat:0|intcomma }} ISK |
{% else %}
0 ISK {{tracking.net_price|floatformat:0|intcomma }} ISK |
{% endif %}
|
{% trans "Invoiced items (original calculation)" %}
{% trans "Name" %} |
{% trans "Quantity" %} |
{% trans "Buy value" %} |
{% for item in tracking_items %}
{{item.eve_type.name}} |
{{item.quantity|intcomma}} |
{{item.buy_value|floatformat:0|intcomma}} ISK |
{% endfor %}
{% trans "Contract contains (actual contract)" %}
{% trans "Name" %} |
{% trans "Quantity" %} |
{% for item in contract_items %}
{{item.eve_type.name}} |
{{item.quantity|intcomma}} |
{% endfor %}
{% endblock %}
{% block extra_javascript %}
{% endblock %}
{% block extra_css %}
{% endblock %}
{% block extra_script %}
{% endblock %}