camp/photologue/templates/photologue/photo_archive_month.html
2025-03-24 11:35:33 +00:00

49 lines
1.5 KiB
HTML

{% 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">
<div class="col-lg-12">
<h1>{% blocktrans with show_month=month|date:"F Y" %}Photos for {{ show_month }}{% endblocktrans %}</h1>
</div>
</div>
<div class="row">
<aside class="col-md-2">
<h4>{% trans "Filter by day" %}</h4>
<ul>
{% for date in date_list %}
<li><a href="{% url 'photologue:photo-archive-day' date.year date|date:"m"|lower date.day %}">{{ date|date:"d" }}</a></li>
{% endfor %}
</ul>
</aside>
<main class="col-md-10">
{% if object_list %}
<div class="row">
<div class="col-lg-12">
{% for photo in object_list %}
<a href="{{ photo.get_absolute_url }}">
<img src="{{ photo.get_thumbnail_url }}" class="img-thumbnail" alt="{{ photo.title }}">
</a>
{% endfor %}
</div>
</div>
{% else %}
<p>{% trans "No photos were found" %}.</p>
{% endif %}
<div><a href="{% url 'photologue:pl-photo-archive-year' month.year %}" class="btn btn-outline-secondary">{% trans "View all photos for year" %}</a></div>
</main>
</div>
{% endblock %}