{% extends "markettracker/base.html" %} {% load i18n %} {% block page_title %} {% trans "Bulk Move Tracked Items" %} {% endblock %} {% block details %}
{% trans "Bulk Move Tracked Items" %}

{% blocktrans %} Move multiple tracked market items from one tracking location to another. {% endblocktrans %}

{% if source_location %}
{% endif %}
{% if source_location %}
{% csrf_token %}
{% trans "Tracked Items" %} {{ tracked_items|length }} 0 {% trans "selected" %}
{% for tracked in tracked_items %} {% empty %} {% endfor %}
{% trans "Item" %} {% trans "Group" %} {% trans "Category" %} {% trans "Desired" %} {% trans "Status" %}
{{ tracked.item.name }} {{ tracked.item.eve_group.name|default:"—" }} {{ tracked.item.eve_group.eve_category.name|default:"—" }} {{ tracked.desired_quantity }} {% if tracked.last_status == "RED" %} {{ tracked.last_status }} {% elif tracked.last_status == "YELLOW" %} {{ tracked.last_status }} {% else %} {{ tracked.last_status }} {% endif %}
{% trans "No tracked items found." %}
{% trans "Move items" %}
{% trans "Important:" %} {% blocktrans %} If an item is already tracked at the destination, that item will be skipped. Existing destination settings will not be overwritten. {% endblocktrans %}
{% endif %} {% endblock %}