{% extends "base.html" %} {% load static %} {% block title %} Search {% endblock %} {% block parallax %} {% include "./partials/parallax.html" %} {% endblock %} {% block content %}
{% if results %} {% for album in results %}

{{ album }}

{{ album.album_date|date:"d.m.Y" }} • {{ album.photos_in_album }} photos

{% endfor %} {% else %}

Not found: "{{ query }}".

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