{% extends "base.html" %} {% from "_macros.html" import byline %} {% block title %}{{ list.config.name }} — Great{% endblock %} {% block content %}

{{ list.config.name }}{% if page.total_pages > 1 %} page {{ page.number }} of {{ page.total_pages }}{% endif %}

{% if list.config.description %}

{{ list.config.description }}

{% endif %}

{{ list.ranked|length }} item{{ '' if list.ranked|length == 1 else 's' }} — {{ list.comparison_count }} comparison{{ '' if list.comparison_count == 1 else 's' }} {% if page.total_pages > 1 %}— showing {{ page.start_rank }}–{{ page.end_rank }}{% endif %}

{% if list.tiers %}{% endif %} {% for row in page.rows %} {% if list.tiers %} {% endif %} {% endfor %}
No.TierTitle Year Score ±
{{ row.rank }}{% if row.tier_break or loop.first %}{{ row.tier }}{% endif %} {{ row.item.title }}{% if row.creators %}{% endif %} {% if row.item.year %}{{ row.item.year }}{% else %}—{% endif %} {{ "%+.2f"|format(row.score.mean) }} {{ "%.2f"|format(row.score.variance ** 0.5) }}
{% if page.total_pages > 1 %} {% endif %} {% endblock %}