{% extends "base.html" %} {% block content %}
Watch Queue
{% if let Some(err) = error %}

{{ err }}

{% endif %} {% if entries.is_empty() %}

No pending watches. Connect Jellyfin to start auto-logging.

{% else %}

Movies you watched via Jellyfin. Rate and confirm to add to your diary, or dismiss.

{% for entry in entries %}
{% if let Some(url) = &entry.movie_url %} {{ entry.title }} {% else %} {{ entry.title }} {% endif %} {% if let Some(y) = entry.year %} ({{ y }}) {% endif %}
Watched {{ entry.watched_at }} via {{ entry.source }}
{% endfor %}
{% endif %}
{% endblock %}