{% extends "base.html" %} {% block content %}

Security Plan Processing Results for Source Document "{{ filename }}"


System Security Plan Created!

"{{result_output.ssp_title}}" (# {{ result_output.ssp_id }}) in RegScale


 

Summary

{{ results.Info + results.Error }} Items in source document processed

  • {{ results.Info }}Items successfully mapped to created Security Plan
  • {{ results.Error }}Items failed to map to created Security Plan
  • {{ result_output.implementations_loaded }}Control items successfully mapped to created Security Plan

{{ (results.Info / (results.Info + results.Error) * 100)|round(1)}}% Item processing success rate

 

Items by Category

    {% for item in category_counts.items() %}
  • {{ item[1] }}{{ item[0] }}
  • {% endfor %}

 

{% for level, rows in csv_data_grouped.items()%}

{{ level }} Results

The {{ level|lower }} statements found processing source document. {% for row in rows %} {% endfor %}
NIST Model Layer Item Record Type Event
{{ row['model_layer'] }} {{ row['record_type'] }} {{ row['event'] }}
{% endfor %}
{% endblock %}