{% extends theme("territories/territory.html") %} {% set meta = { 'title': territory.name, 'description': _('Datasets related to the town of %(name)s with INSEE code %(code)s and postal code %(postal)s', name=territory.name, code=territory.code, postal=territory.postal_string), 'keywords': [territory.name, territory.code, territory.postal_string], } %} {% block breadcrumb %}
  • {{ _('Territories') }}
  • {{ _('Region:') }} {{ territory.current_parent.current_parent.name }}
  • {{ _('County:') }} {{ territory.current_parent.name }}
  • {{ _('Town:') }} {{ 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 %}
    {% endblock %}