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.
 
 
 
 
 
 

39 lines
1.2 KiB

{% extends "photologue/root.html" %}
{% load i18n %}
{% block title %}{% blocktrans with show_month=month|date:"F Y" %}Galleries for {{ show_month }}{% endblocktrans %}{% endblock %}
{% block content %}
<div class="row page-header col-lg-12">
<h1>{% blocktrans with show_month=month|date:"F Y" %}Galleries for {{ show_month }}{% endblocktrans %}</h1>
</div>
<div class="col-md-2">
<div>{% trans "Filter by day" %}</div>
<ul>
{% for date in date_list %}
<li><a href="{% url 'pl-gallery-archive-day' date.year date|date:"b"|lower date.day %}">{{ date|date:"d" }}</a></li>
{% endfor %}
</ul>
</div>
<div class="col-md-10">
{% 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-year' month.year %}" class="btn btn-default">{% trans "View all galleries for year" %}</a>
</div>
</div>
{% endblock %}