{% 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 %}
{{ _('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 %}{% for ancestor in territory.ancestors_objects %} {{ ancestor.name }}{% if not loop.last %},{% endif %} {% endfor %}
{% for county in territory.children %} {{ county.name }}{% if not loop.last %},{% endif %} {% endfor %}