{% extends "markettracker/base.html" %} {% load i18n humanize %} {% block content %}

{% trans "Tracked Contracts" %}

{% trans "Tracked Contracts" %}
{% if status == "red" %} {% else %} {% endif %} {% if status == "yellow" %} {% else %} {% endif %}
{% for r in rows %} {% empty %} {% endfor %}
{% trans "Icon" %} {% trans "Name" %} {% trans "Quantity (current / desired)" %} {% trans "Minimum Price" %}
{% if r.icon_type_id %} {% else %} {% endif %} {{ r.name }} {{ r.current_qty }} / {{ r.desired_qty|default:"—" }} {% if r.min_price %} {{ r.min_price|floatformat:2|intcomma }} ISK {% else %} {% trans "No data" %} {% endif %}
{% trans "No tracked contracts." %}
{% endblock %}