{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %} {% trans "Search" %} {% endblock %} {% block content %}
{% if results %} {% for album in results %} {% include "gallery/partials/album_card.html" %} {% endfor %} {% else %}

Not found: "{{ query }}".

{% endif %}
{% include "./partials/pagination.html" %} {% endblock %}