Mercurial > public > madeira
view mysite/photologue/templates/photologue/photo_archive_year.html @ 39:b8e166ca993a
Made the database name part of SECRETS.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 Feb 2012 18:52:57 -0600 |
parents | 0dcfcdf50c62 |
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 %}