{% for gallery in latest_galleries %}
{% if gallery.photo_set.all %}
<dl class="feature">
{% for p in gallery.photo_set.all %}
{% if forloop.first %}
<dt><a href="{{gallery.get_absolute_url}}"><img src="/media/gallery/{{gallery.slug}}/thumbs/{{ p.filename}}" width="100" height="100" /></a><a href="{{gallery.get_absolute_url}}">{{ gallery.title }}</a></dt>
{% endif %}
{% endfor %}
<dd>{{ gallery.summary}} - <strong>{{ gallery.photo_set.all|length }}</strong> pictures.</dd>
</dl>
{% endif %}
{% endfor %}