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

Want to consume

{% if not queues %}

Nothing in the queue.

{% endif %} {% for queue in queues %}

{{ queue.kind }}

{{ queue.ranked|length }} item{{ '' if queue.ranked|length == 1 else 's' }} — {{ queue.comparison_count }} comparison{{ '' if queue.comparison_count == 1 else 's' }}

    {% for row in queue.rows %}
  1. {{ row.item.title }} {% if row.creators %}{% endif %} {% if row.item.year %}({{ row.item.year }}){% endif %} {% if queue.comparison_count %} {% else %} {% endif %}
  2. {% endfor %}
{% endfor %} {% endblock %}