{% extends "industry_reforged/base.html" %} {% load i18n %} {% load django_bootstrap5 %} {% block content %}

{{ title }}

{% translate "Scanner Configuration" %}
{% translate "Back to Dashboard" %}
{% csrf_token %}
{% bootstrap_field form.name %}
{% bootstrap_field form.is_active %}
{% bootstrap_field form.corporation %}
{% bootstrap_field form.region_id %}
{% bootstrap_field form.target_hub_id %}
{% bootstrap_field form.min_profit_margin %}
{% bootstrap_field form.min_velocity %}
{% bootstrap_field form.categories %}
{% translate "AI Automation Actions" %}
{% bootstrap_field form.scan_missing_blueprints %} {% translate "Enable this to also scan for profitable items in these categories that your corporation does NOT own blueprints for. This will take longer to run, but generates a Missing BPO report." %}
{% bootstrap_field form.auto_add_basket %} {% translate "Automatically create Basket Items for opportunities." %}
{% bootstrap_field form.target_stock_days %} {% translate "Target stock = daily velocity * days." %}
{% bootstrap_field form.run_interval_hours %} {% translate "How often this scanner should run automatically." %}
{% translate "Cancel" %}
{% translate "About Opportunity Scanners" %}

{% translate "Opportunity Scanners allow you to define persistent scan profiles to quickly find profitable items." %}

{% translate "You must select EITHER a Target Region OR a Target Hub. If you select a Hub, it will use the Hub's system and region context." %}

{% translate "Saved scanners can be manually executed at any time from the AI Manager Dashboard using the 'Run' button." %}

{% endblock %}