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.0 KiB

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