{% 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 photo in album.photos.all %} {% endfor %} {% for video in album.videos.all %} {% if video.thumbnail %} {% endif %} {% endfor %}
{% endfor %} {% else %}
No albums were found.
{% endif %} {% endblock %}