{% extends 'base.html' %} {% block title %}AVS Migration Risks Analysis{% endblock %} {% block content %}
This page will display potential migration risks for the uploaded file: {{ filename }}
Count: {{ risk_data.count }}
{{ risk_data.risk_info.description }}
{% if risk_data.risk_info.alert_message %}| Item | Count | {% if risk_name == 'detect_esx_versions' and risk_data.details and risk_data.details.version_risks %}Risk Level | {% endif %} {% else %} {% for key in risk_data.data[0].keys() %}{{ key }} | {% endfor %} {% endif %}
|---|---|---|---|
| {{ key }} | {{ value }} | {% if risk_name == 'detect_esx_versions' and risk_data.details and risk_data.details.version_risks %}{% set version_risk = risk_data.details.version_risks.get(key, 'info') %} {{ get_risk_display_name(version_risk) }} | {% endif %}|
| {% if key == 'Risk Level' %} {{ get_risk_display_name(value) }} {% elif value is sameas true or value|string|lower in ['true', 'yes'] %} ✓ {% elif value is sameas false or value|string|lower in ['false', 'no'] %} ✘ {% elif 'MiB' in key and value|string|length > 0 %} {{ value | convert_mib_to_human_readable }} {% else %} {{ value }} {% endif %} | {% endfor %}