{% extends "base.html" %} {% block title %}My List{% endblock %} {% block body_class %}catalog-page{% endblock %} {% block content %}

My List

{% for item in items %}
{% if item.cover_art_source in ('tmdb', 'omdb') and item.cover_art_path %} {{ item.title }} {% elif item.placeholder_art %}
{{ item.title }} {% if item.thumbnail_url %} {% elif item.cover_art_path %} {% endif %}
{% elif item.cover_art_path %} {{ item.title }} {% elif item.thumbnail_url %} {{ item.title }} {% else %}
{{ item.title[:1] }}
{% endif %}

{{ item.title }}

{{ (item.duration_sec // 60) }}m
{% endfor %}
{% if not items %}

Your list is empty.

Browse the catalog and click + My List on any title to save it for later.

Browse Catalog

{% endif %} {% endblock %} {% block scripts %} {% endblock %}