{% extends "industry_reforged/base.html" %} {% load i18n %} {% load humanize %} {% block details %}

{% translate "Logs for" %} {{ scanner.name }}

{% translate "Back to Dashboard" %}
{% translate "Log History" %}
{% if logs %}
{% for log in logs %} {% if log.evaluation_details %} {% endif %} {% endfor %}
{% translate "Timestamp" %} {% translate "Items Scanned" %} {% translate "Opportunities" %} {% translate "Auto-Added" %} {% translate "Details" %}
{% translate "Per-Item Evaluation" %}
{% for entry in log.evaluation_details %} {% endfor %}
{% translate "Item" %} {% translate "ADV (30d)" %} {% translate "AI Forecast" %} {% translate "Min ADV" %} {% translate "Margin" %} {% translate "Min Margin" %} {% translate "Sell Price" %} {% translate "Build Cost" %} {% translate "Decision" %} {% translate "Reason" %}
{% if entry.type_id %} {{ entry.item }} {% endif %} {{ entry.item }} {% if entry.auto_added %} {% endif %} {{ entry.velocity }} {% if entry.forecasted_velocity %} {{ entry.forecasted_velocity }} {% else %} - {% endif %} {{ entry.min_velocity }} {{ entry.margin }}% {{ entry.min_margin }}% {{ entry.sell_price|floatformat:2|intcomma }} {{ entry.build_cost|floatformat:2|intcomma }} {% if entry.decision == "OPPORTUNITY" %} {% translate "Pass" %} {% else %} {% translate "Skip" %} {% endif %} {{ entry.reason }}
{% else %}
{% translate "No logs found for this scanner." %}
{% endif %}
{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}