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.
43 lines
1.3 KiB
43 lines
1.3 KiB
{% extends "photologue/root.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% blocktrans with show_month=month|date:"F Y" %}Photos for {{ show_month }}{% endblocktrans %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row page-header col-lg-12">
|
|
<h1>{% blocktrans with show_month=month|date:"F Y" %}Photos 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-photo-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 %}
|
|
<div class="row col-lg-12">
|
|
{% for photo in object_list %}
|
|
<a href="{{ photo.get_absolute_url }}">
|
|
<img src="{{ photo.get_thumbnail_url }}" class="thumbnail" alt="{{ photo.title }}">
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="row">{% trans "No photos were found" %}.</div>
|
|
{% endif %}
|
|
|
|
<div class="row col-lg-12">
|
|
<a href="{% url 'pl-photo-archive-year' month.year %}" class="btn btn-default">{% trans "View all photos for year" %}</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|