You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
781 B

{% extends "photologue/root.html" %}
{% load i18n %}
{% block title %}{% blocktrans with show_day=day|date:"d F Y" %}Galleries for {{ show_day }}{% endblocktrans %}{% endblock %}
{% block content %}
<h1>{% blocktrans with show_day=day|date:"d F Y" %}Galleries for {{ show_day }}{% endblocktrans %}</h1>
{% if object_list %}
{% for gallery in object_list %}
{% include "photologue/includes/gallery_sample.html" %}
{% endfor %}
{% else %}
<div class="row">{% trans "No galleries were found." %}</div>
{% endif %}
<div class="row col-lg-12">
<a href="{% url 'pl-gallery-archive-month' day.year day|date:"b"|lower %}" class="btn btn-default">{% trans "View all galleries for month" %}</a>
</div>
{% endblock %}