{% extends "base.html" %} {% load static thumbnail %} {% 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 %} {% endfor %}
{% endfor %} {% else %}
No albums were found.
{% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}