{% set bg = ['1.96e45c02', '2.3f186847', '3.f7c6b1e9', '4.32486a3e', '5.426291c0', '6.b4b0eadf'] %}
{% set level_icon = ['', '1212', '1213', '1214', '1215'] %}
{% for record in records %}
{% set not_challenge = record.score == 0 %}
{% if not_challenge %}
尚未挑战
{% else %}
{% for role in record.avatars %}
{% if role.is_trial %}
试用
{% endif %}
{% endfor %}
{% for buff in record.buffs %}
{{ buff.name }}:{{ buff.desc }}
{% endfor %}
{% endif %}
{% endfor %}