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

Результаты выбора платформы

{% for platform, score in scores.items() %}

{{ platform }} — {{ "%.2f"|format(score) }}%

{% if unsupported_features[platform] %}

Не поддерживается:

    {% for feature in unsupported_features[platform] %}
  • {{ feature }}
  • {% endfor %}
{% else %}

Все необходимые функции поддерживаются ✅

{% endif %}
{% endfor %}
← Вернуться к выбору
{% endblock %}