{% load humanize %} {% load price_formats %} {% load help_icons %} {% load i18n %}
| {% trans "Prices based on" %} | {{price_source}} {{program.price_type}} price | |
|---|---|---|
| {% trans "Price before expenses" %} | {{contract_price_data.total_all_items_raw|custom_number_format:2}} ISK | |
| {% trans "Program taxes" %} | {{contract_price_data.total_tax_amount|custom_number_format:2}} ISK | |
| {% trans "Total volume" %} | {{contract_price_data.contract_total_volume|custom_number_format:2}} m³ | |
| {% trans "Hauling cost" %} | {{contract_price_data.total_hauling_cost|custom_number_format:2}} ISK @ {{contract_price_data.hauling_cost|custom_number_format:2}} ISK / m³ | |
| {% trans "Donation amount" %} | {{contract_price_data.total_donation_amount|custom_number_format:2}} ISK @ {{donation}} % | |
| {% trans "Net price" %} | {% if contract_price_data.contract_net_total >= 0 %}{{contract_price_data.contract_net_total|custom_number_format:2}} ISK | {% else %}0 ISK |
{% endif %}
| {% trans "Accepted location(s)" %} |
{% for location in program.location.all %}
{{ location.location_display_name }}
{% endfor %}
|