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

Optimal Sticker Comparison Table

Statistic Report

{% for column_head in statistics_table.column_headers %} {% endfor %} {% for row_name, row_content in statistics_table.rows.items() %} {% for column_head, cell_content in row_content.items() %} {% endfor %} {% endfor %}
{{column_head}}
{{row_name}} {{cell_content}}

Stickers

{% for column_head in column_headers %} {% endfor %} {% for comparison_row in comparison_rows %} {% for strategy_result in comparison_row.results %} {% endfor %} {% endfor %}
# Image{{column_head}}
{{comparison_row.id}}

{% if strategy_result.area < 0 %} No Fooling Sticker Found {% else %} Area = {{strategy_result.area}}
Time = {{strategy_result.time}} ms
Fitness = {{strategy_result.fitness_value}} {% endif %}
{% endblock %}