{% extends "photologue/root.html" %} {% load i18n %} {% block title %}{% blocktrans with show_day=day|date:"d F Y" %}Photos for {{ show_day }}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with show_day=day|date:"d F Y" %}Photos for {{ show_day }}{% endblocktrans %}

{% if object_list %}
{% for photo in object_list %} {{ photo.title }} {% endfor %}
{% else %}

{% trans "No photos were found" %}.

{% endif %}
{% trans "View all photos for month" %}
{% endblock %}