{% extends "django_classified/_base.html" %} {% block title %}{{ DCF_SITE_NAME }}{% endblock title %} {% block body %} {% for object in object_list %} {% if forloop.first %}
{% endif %}

{{ object }} [{{ object.count }}]

{% for group in object.group_set.all %} {% if group.count > 0 %} {{ group.title }} [{{ group.count }}]
{% endif %} {% endfor %}
{% if forloop.counter|divisibleby:3 or forloop.last %}
{% if not forloop.last %}
{% endif %} {% endif %} {% endfor %} {% endblock %}