{% extends "django_classified/_base.html" %} {% load i18n %} {# Not SITE_NAME: the base template already appends it, which produced a #} {# duplicated "Name | Name" title on the index page. #} {% block title %}{% trans "Classified ads" %}{% endblock title %} {% block body %}
{% for object in object_list %}

{{ object.section.0 }} {{ object.section.1 }}

{% empty %}

{% trans "No item here yet." %}

{% endfor %}
{% endblock %}