{% extends "base.html" %} {% block title %}{{ 'Edit' if mode == 'edit' else 'Add' }} Component{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

{{ 'Edit Component Details' if mode == 'edit' else 'New Component Details' }}

Device Assignment

{% for device in devices %}
{{ device.name }}
{{ device.vendor_name or 'Unknown vendor' }} {% if device.model %} • {{ device.model }}{% endif %} {% if device.site_code %} • {{ device.site_code }}{% endif %}
{% endfor %}
{% if selected_device %}
{{ selected_device.name }} {% if selected_device.vendor_name %}• {{ selected_device.vendor_name }}{% endif %}
{% endif %}

Component Information

{% for t in existing_types %} {% if existing_types %}
{% for t in existing_types[:8] %} {{ t }} {% endfor %}
{% endif %}
{% if mode == 'edit' and component %}

Extraction Information

{% if component.extraction_source == 'manual' %} Manually added component {% else %} Auto-discovered {% if component.extraction_source %}via {{ component.extraction_source }}{% endif %} {% if component.extraction_confidence %} • {{ "%.0f"|format(component.extraction_confidence * 100) }}% confidence {% endif %} {% endif %}
{% endif %}
Cancel
{% endblock %}