{% extends "base.html" %} {% block title %}Queue — Great{% endblock %} {% block content %}

Want to consume

{% if not queues %}

Nothing in the queue.

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

{{ queue.kind }}

    {% for item in queue.ranked %}
  1. {{ item.title }} {% if item.year %}({{ item.year }}){% endif %}
  2. {% endfor %}
{% endfor %} {% endblock %}