{% load i18n %} {% for place in places %}
  • {# Translators: accessible label for section showing place metadata, names #}
    {% translate "Name" %}
    {% if place.url %} {{ place.name }} {% else %} {{ place.name }} {% endif %}
    {% if place.other_names %}
    {% translate "Other names" %}
    {% for other_name in place.other_names %} {{ other_name }}{% if not forloop.last %}, {% endif %} {% endfor %}
    {% endif %}
    {# Translators: accessible label for section showing counts of entries related to an entity #}
    {% translate "Related Documents" %}
    {{ place.documents }}
    {% translate "Related People" %}
    {{ place.people }}
  • {% endfor %}