{% extends "django_classified/_base.html" %} {% load i18n %} {# Group title first: the specific term matters more than the parent section #} {# in a search result, and Group.__str__ leads with the section. #} {% block title %}{{ object.title }} — {{ object.section.title }}{% endblock %} {% block meta_description %}{% blocktrans count counter=page_obj.paginator.count with group_title=object.title section_title=object.section.title %}{{ group_title }} classified ads in {{ section_title }}. Browse {{ counter }} listing.{% plural %}{{ group_title }} classified ads in {{ section_title }}. Browse {{ counter }} listings.{% endblocktrans %}{% endblock meta_description %} {% block meta_og %} {% endblock %} {% block body %}

{{ object.section.title }}

{{ object.title }}

{% include "django_classified/item_list.inc.html" %} {% include "django_classified/list_pagination.inc.html" %} {% endblock body %}