{{ title }}
Missing in Base
{% for rule in missing_in_base %}
- {{ rule }}
{% endfor %}
Missing in Target
{% for rule in missing_in_target %}
- {{ rule }}
{% endfor %}
{% if base_missing_cces %}
Rows Missing STIG IDs in Base
{% for requirement in base_missing_stig_ids %}
- {{ requirement }}
{% endfor %}
{% endif %}
{% if target_missing_cces %}
Rows Missing STIG IDs in Target
{% for requirement in target_missing_stig_ids %}
- {{ requirement }}
{% endfor %}
{% endif %}
Deltas
{% for delta in deltas %}
{% if delta.should_display() %}
{{ delta.cci }} - {{ delta.rule_id }}
{% if delta.Requirement != "" %}
Requirement
{{ delta.Requirement }}
{% endif %}
{% if delta.Vul_Discussion != "" %}
Vul_Discussion
{{ delta.Vul_Discussion }}
{% endif %}
{% if delta.Status != "" %}
Status
{{ delta.Status }}
{% endif %}
{% if delta.Check != "" %}
Check
{{ delta.Check }}
{% endif %}
{% if delta.Fix != "" %}
Fix
{{ delta.Fix }}
{% endif %}
{% endif %}
{% endfor %}