{% extends 'buybackprogram/page.html' %} {% load i18n %} {% load humanize %} {% load django_bootstrap5 %} {% load static %} {% block details %} {% if selected_items %}
{% trans "Request Summary" %}

{% trans "Availability:" %} {% if program.is_corporation %}{{ program.owner.corporation }}{% else %}{{ program.owner.character.character }}{% endif %}

{% trans "I will pay:" %} {{ contract_net_total|floatformat:0 }} ISK

{% if tracking_number %}

{% trans "Tracking number:" %} {{ tracking_number }}

{% endif %}
{% trans "How to create the contract:" %}
  1. {% trans "Open contracts ingame and click" %} {% trans "Create Contract" %}
  2. {% trans "Select" %} {% trans "Item Exchange" %} {% trans "and search for" %} {% if program.is_corporation %}{{ program.owner.corporation }}{% else %}{{ program.owner.character.character }}{% endif %}
  3. {% trans "Check the" %} {% trans "Also request items from buyer" %} {% trans "checkbox" %}
  4. {% trans "On the items page, click" %} {% trans "I will pay" %} {% trans "and enter" %} {{ contract_net_total|floatformat:0|intcomma }} ISK
  5. {% trans "Click" %} {% trans "I will receive" %} {% trans "and add all the items listed below from the requested items list" %}
  6. {% trans "Set the contract title to your tracking number:" %} {{ tracking_number }}
  7. {% trans "Set expiration to" %} {{ program.expiration }} {% trans "and submit" %}
{% trans "Requested Items" %}
{% for item in selected_items %} {% endfor %}
{% trans "Item" %} {% trans "Quantity" %} {% trans "Unit Price" %} {% trans "Total" %} {% trans "Notes" %}
{{ item.name }}{{ item.name }} {{ item.quantity|intcomma }} {{ item.unit_price|floatformat:2|intcomma }} ISK {{ item.total_price|floatformat:2|intcomma }} ISK {% for note in item.notes %} {% endfor %}
{% trans "Total" %} {{ contract_net_total|floatformat:2|intcomma }} ISK
{% endif %}
{% trans "Available Stock" %} {% if program.name %} — {{ program.name }}{% endif %}
{% trans "Select the items you wish to purchase and submit a buy request to get a tracking number. In-game, create a contract to the seller and enable the \"I will receive\" option to request the items listed in the calculator. Set the contract price to the calculated ISK amount." %}
{% trans "Item" %} {% trans "Group" %} {% trans "Available" %} {% trans "Reserved" %} {% trans "Unit Price (ISK)" %} {% trans "Quantity" %} {% trans "Add" %}
{% trans "Selected Items" %} 0
{% trans "Item" %} {% trans "Quantity" %} {% trans "Unit Price" %} {% trans "Total" %} {% trans "Remove" %}
{% trans "No items selected yet." %}
{% trans "Grand Total" %} 0 ISK
{% csrf_token %}
{% endblock %} {% block extra_javascript %} {% endblock %} {% block extra_css %} {% include "buybackprogram/bundles/buybackprogram-css-light.html" %} {% endblock %} {% block extra_script %} {% endblock %}