{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %} {% trans "Albums" %} {% endblock %} {% block content %}
{% for album in album_list %} {% include "gallery/partials/album_card.html" %} {% endfor %}
{% include "./partials/pagination.html" %} {% endblock %}