{% extends "base.html" %} {% block title %}Results - SCADA vs DWG Manifest Comparison Tool{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% if comparisons %}

Available Comparisons

Back to Upload
{% endif %}

Comparison Results: {{ data.name }}

SCADA Items: {{ data.scada_vs_manifest.scada_count }}
Manifest Items: {{ data.scada_vs_manifest.manifest_count }}
DWG Items: {{ data.scada_vs_dwg.dwg_count }}
Repository: {{ data.repository_url }}

Last updated: {{ data.timestamp }}

In SCADA but Missing from DWG ({{ data.scada_vs_dwg.only_in_scada|length }})
{% if data.scada_vs_dwg.only_in_scada %}
{% for item in data.scada_vs_dwg.only_in_scada %} {% endfor %}
Name Control Panel
{{ item.name }} {{ item.control_panel }}
{% else %}

No items in SCADA are missing from DWG.

{% endif %}
In DWG but Missing from SCADA ({{ data.scada_vs_dwg.only_in_dwg|length }})
{% if data.scada_vs_dwg.only_in_dwg %}
{% for item in data.scada_vs_dwg.only_in_dwg %} {% endfor %}
Name Control Panel
{{ item.name }} {{ item.control_panel }}
{% else %}

No items in DWG are missing from SCADA.

{% endif %}
Names Found in Both SCADA and DWG ({{ data.scada_vs_dwg.common|length }})
{% if data.scada_vs_dwg.common %}
{% for item in data.scada_vs_dwg.common %} {% endfor %}
Name Control Panel
{{ item.name }} {{ item.control_panel }}
{% else %}

No common names found between SCADA and DWG.

{% endif %}
In Manifest but Missing from DWG ({{ data.manifest_vs_dwg.only_in_manifest|length }})
{% if data.manifest_vs_dwg.only_in_manifest %}
{% for item in data.manifest_vs_dwg.only_in_manifest %} {% endfor %}
Name
{{ item.name }}
{% else %}

No items in Manifest are missing from DWG.

{% endif %}
In DWG but Missing from Manifest ({{ data.manifest_vs_dwg.only_in_dwg|length }})
{% if data.manifest_vs_dwg.only_in_dwg %}
{% for item in data.manifest_vs_dwg.only_in_dwg %} {% endfor %}
Name
{{ item.name }}
{% else %}

No items in DWG are missing from Manifest.

{% endif %}
Names Found in Both Manifest and DWG ({{ data.manifest_vs_dwg.common|length }})
{% if data.manifest_vs_dwg.common %}
{% for item in data.manifest_vs_dwg.common %} {% endfor %}
Name
{{ item.name }}
{% else %}

No common names found between Manifest and DWG.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}