{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% load tz %} {% block page_title %}{% trans "Sell Materials to Hub" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% if assets_refreshing %}
{% trans "Loading your asset inventory." %}
{% endif %}
{% trans "Last update" %}: {% if sell_last_update %} {% with sell_utc=sell_last_update|timezone:"UTC" %} {{ sell_utc|date:"Y-m-d H:i" }} EVE / {{ sell_utc|date:"Y-m-d H:i" }} {% trans "Local" %} {% endwith %} {% else %} {% trans "Never" %} {% endif %}
{% if sell_next_refresh_minutes == 0 %} {% trans "Auto-refresh will run on the next page open." %} {% elif sell_next_refresh_minutes %} {% blocktrans with minutes=sell_next_refresh_minutes %}Auto-refresh runs on page open in about {{ minutes }} minute(s).{% endblocktrans %} {% else %} {% trans "Auto-refresh runs on page open once data is older than 60 minutes." %} {% endif %}
{% trans "Enter the quantities you want to sell." %}
{% trans "Make sure you have the items in your hangar." %}
{% if sell_assets_progress.error == "missing_assets_scope" %}
{% trans "Missing assets token: add the ESI assets scope to load your assets." %}
{% trans "Add assets token" %}
{% endif %} {% if sell_assets_progress.error == "esi_down" %}
{% trans "ESI is temporarily unavailable. Using cached assets." %}
{% if sell_assets_progress.retry_after_minutes %} {% blocktrans with minutes=sell_assets_progress.retry_after_minutes %}Retry in about {{ minutes }} minute(s).{% endblocktrans %} {% endif %}
{% endif %} {% if sell_assets_progress.error == "no_assets_fetched" %}
{% trans "Assets refresh completed, but no items were returned." %}
{% trans "Try again later or verify your assets scope." %}
{% endif %}
{% if materials %}
{% trans "Your Materials at" %} {{ config.structure_name }}
{% if character_tabs %}
{% if character_tabs|length > 1 %}
{% if active_character_tab_data %}{{ active_character_tab_data.name }}{% else %}{{ character_tabs.0.name }}{% endif %}
{% trans "Selected character" %}
{% if active_character_tab_data %}{{ active_character_tab_data.name }}{% else %}{{ character_tabs.0.name }}{% endif %} {% if active_character_tab_data %}{{ active_character_tab_data.item_count }}{% else %}{{ character_tabs.0.item_count }}{% endif %}
{% else %} {% endif %}
{% endif %}
{% csrf_token %}
{% for item in materials %} {% endfor %}
{% trans "Item" %} {% trans "You Own" %} {% trans "Unit Price" %} {% trans "Quantity" %}
{{ item.type_name }}
{{ item.type_name }}
{{ item.group_name|default:_('Other') }}
{{ item.user_quantity|intcomma }} {{ item.buy_price_from_member|floatformat:2|intcomma }} ISK
{% trans "Max:" %} {{ item.user_quantity|intcomma }}
{% trans "No matching items for your search." %}
{% trans "Sell Summary" %}

{% trans "Enter quantities to see your payout" %}

{% trans "Total Payout" %} 0 ISK
{% else %} {% if not assets_refreshing %}
{% trans "No materials available for selling. Please contact an admin." %}
{% endif %} {% endif %}
{% endblock content %} {% block extra_javascript %} {% endblock extra_javascript %}