[videos] Fix lookup for ids for videos

This commit is contained in:
2025-11-17 16:34:38 -05:00
parent 4b9b785e50
commit 9c2355978e

View File

@ -66,12 +66,12 @@ dd {
{% if object.overview %}<p><em>{{object.overview}}</em></p>{% endif %}
{% if object.plot%}<p>{{object.plot|safe|linebreaks|truncatewords:160}}</p>{% endif %}
<hr />
{% if object.imdb_link %}
{% if object.imdb_id %}
<p style="float:right;">
<a href="{{object.imdb_link}}"><img src="{% static "images/imdb_logo.png" %}" width=35></a>
</p>
{% endif %}
{% if object.youtube_link %}
{% if object.youtube_id %}
<p style="float:right;">
<a href="{{object.youtube_link}}"><img src="{% static "images/youtube_logo.png" %}" width=35></a>
</p>