{% extends 'base.html.twig' %}
{% block style %}
{% endblock %}
{% block body %}
|
{% for champion in champions %}
{{ champion.chmpname }} |
{% endfor %}
{% for row_champion in champions %}
{{ row_champion.chmpname }} |
{% for col_champion in champions %}
{% set matchup_percent = 0 %}
{% set found = false %}
{% for matchup in matchups %}
{% if matchup.chmp1id == row_champion.chmpid and matchup.chmp2id == col_champion.chmpid %}
{% set matchup_percent = matchup.percentMU %}
{% set found = true %}
{% elseif matchup.chmp1id == col_champion.chmpid and matchup.chmp2id == row_champion.chmpid %}
{% set matchup_percent = 100 - matchup.percentMU %}
{% set found = true %}
{% endif %}
{% endfor %}
{% if found %}
{% if matchup_percent < 20 %}
{{ matchup_percent }} |
{% elseif matchup_percent < 40 %}
{{ matchup_percent }} |
{% elseif matchup_percent < 60 %}
{{ matchup_percent }} |
{% elseif matchup_percent < 80 %}
{{ matchup_percent }} |
{% else %}
{{ matchup_percent }} |
{% endif %}
{% else %}
|
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}