{% extends "base.html" %} {% load static %} {% block title %}Albums{% endblock %} {% block content %}

Albums

{% if object_list %} {% for album in object_list.all %}

{{album.title}}

{{album.date_added | date:"F d, Y"}}

{% for media in album.media.all %} {% if media.video.thumbnail %} {% else %} {% endif %} {% endfor %}
{% endfor %} {% else %}
No albums were found.
{% endif %} {% endblock %}