{% extends 'industry_reforged/base.html' %} {% load i18n %} {% load humanize %} {% block details %}
{% translate "Opportunity Scanners are configured on the AI Manager Dashboard." %}
{% translate "Go to Dashboard" %}| {% translate "Item" %} | {% translate "Corporation" %} | {% translate "Target / Region" %} | {% translate "ADV (30d)" %} | {% translate "AI Forecast" %} | {% translate "AI Confidence" %} | {% translate "Est. Margin" %} | |
|---|---|---|---|---|---|---|---|
|
|
{{ opp.corporation.corporation_name }} |
{% if opp.target_hub %}
{{ opp.target_hub.name }}
{% endif %} {% for key, val in region_map.items %} {% if key == opp.region_id|stringformat:"s" or key == opp.region_id %} {{ val }} {% endif %} {% endfor %} {% if opp.target_hub %} {% endif %} |
{{ opp.velocity|floatformat:1|intcomma }} / {% translate "day" %} | {% if opp.forecasted_velocity %} {{ opp.forecasted_velocity|floatformat:1|intcomma }} / {% translate "day" %} {% else %} - {% endif %} | {% if opp.ai_confidence_score %} {% if opp.ai_confidence_score > 0.8 %} {{ opp.ai_confidence_score|floatformat:2 }} {% elif opp.ai_confidence_score > 0.5 %} {{ opp.ai_confidence_score|floatformat:2 }} {% else %} {{ opp.ai_confidence_score|floatformat:2 }} {% endif %} {% else %} - {% endif %} | {{ opp.margin|floatformat:1 }}% | |
|
{% translate "No opportunities found. Run a scan to discover new items!" %} |
|||||||