{% extends "layout/base.html" %} {% block title %}Fiona Bourdon - Photoblog archives{% endblock %} {% block body_attributes %}id="archives"{% endblock %} {% block content %} {% load truncate_filters %}

Archives

{% regroup archives by category as photo_by_category %} {% for photos in photo_by_category %}

{{ photos.grouper }}

{% for photo in photos.list %} {{ photo.title|truncate_chars:60 }} {% endfor %}
{% endfor %} {% endblock %}