{% extends CMS_TEMPLATE %} {% load i18n common_catalog %} {% block content %}
{% include "common_catalog/pagination.html" %}
{% for item in object_list %} {% block common_catalog_item %}
    {% for filter in item|filters_in_location:"above_title" %}{# code "above_title" is defined in constants.py and can be redefined by COMMON_CATALOG_LOCATIONS in settings. #}
  • {{ filter.name }}
  • {% endfor %}

{{ item.name }}

{% translate "More" %}
{{ item.perex }}
    {% for filter in item|filters_in_location:"under_title" %}
  • {{ filter.name }}
  • {% endfor %}
{% endblock common_catalog_item %}
{% empty %} {% block common_catalog_empty_list %}{% endblock %} {% endfor %}
{% include "common_catalog/pagination.html" %}
{% endblock content %}