{% 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 |
Invoice
{% trans "Program location" %} |
{{tracking.program.location.eve_solar_system}}, {{tracking.program.location.name}} |
List of expenses applied on the contract
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 %}
|
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 %}
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 %}