view photologue/templates/photologue/photo_archive_year.html @ 205:b4566292bbfe tip

Update t-shirt inventory
author Brian Neal <bgneal@gmail.com>
date Sun, 06 Nov 2022 17:42:25 -0600
parents e2868ad47a1e
children
line wrap: on
line source
{% extends "photologue/root.html" %}

{% block title %}Galleries for {{ year }}{% endblock %}

{% block content %}

<h1>Photos for {{ year }}</h1>
<ul>
{% for date in date_list %}
<li><a href="{{ date|date:"M"|lower }}/">{{ date|date:"F" }}</a></li>
{% endfor %}
</ul>

{% endblock %}