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

CheckList

Session Management: {% if check.session_management == 'Pass' %} Pass {% elif check.session_management == 'Fail' %} Fail
{% for issue in check.session_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
Encryption / Crypto {% if check.encryption_crypto == 'Pass' %} Pass {% elif check.encryption_crypto == 'Fail' %} Fail
{% for issue in check.crypto_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
Configuration Management {% if check.configuration_management == 'Pass' %} Pass {% elif check.configuration_management == 'Fail' %} Fail
{% for issue in check.config_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
Authentication {% if check.authentication == 'Pass' %} Pass {% elif check.authenttication == 'Fail' %} Fail
{% for issue in check.auth_issuses.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
Authorizatiton and Access Control {% if check.authorization_and_access_control == 'Pass' %} Pass {% elif check.authorization_and_access_contorl == 'Fail' %} Fail
{% for issue in check.author_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
Data Input Sanitization and Verification {% if check.data_input_sanitization_validation == 'Pass' %} Pass {% elif check.data_input_sanitization_validation == 'Fail' %} Fail
{% for issue in check.data_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
sensitive_data {% if check.sensitive_data == 'Pass' %} Pass {% elif check.sensitive_data == 'Fail' %} Fail
{% for issue in check.sensitive_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %}
other_issues {% if check.other_issues == 'Pass' %} Pass {% elif check.other_issues == 'Fail' %} Fail
{% for issue in check.other_issues.all %} {{ issue.title }} {% endfor %}
{% else %} N/A {% endif %} {% endblock %}