{% extends theme("territories/territory.html") %} {% set meta = { 'title': territory.name, 'description': _('Datasets related to the region of %(name)s with INSEE code %(code)s', name=territory.name, code=territory.code), 'keywords': [territory.name, territory.code], } %} {% block breadcrumb %}
  • {{ _('Territories') }}
  • {{ _('Region:') }} {{ territory.name }}
  • {% endblock %} {% block territory_content %}

    {{ territory.name }}

    {{ _('INSEE code:') }} {{ territory.code }}

    {% if territory.postal_string %}

    {{ _('Postal code:') }} {{ territory.postal_string }}

    {% endif %} {% if territory.population %}

    {{ _('Population:') }} {{ territory.population|format_number }}

    {% endif %} {% if territory.ancestors_objects %}

    {{ _('Previously') }}

    {% for ancestor in territory.ancestors_objects %} {{ ancestor.name }}{% if not loop.last %},{% endif %} {% endfor %}

    {% endif %}

    {{ _('Counties') }}

    {% for county in territory.children %} {{ county.name }}{% if not loop.last %},{% endif %} {% endfor %}

    {% endblock %}