{% extends 'layout.html.twig' %} {% block title %}Locations - Honeyguide M&E{% endblock %} {% block page_title %}Locations{% endblock %} {% block content %}

Locations

Conservation sites and protected areas

{{ locations|length }}
Total Locations
{{ regions|length }}
Regions Covered
{{ totalArea|number_format(0) }}
Total Hectares
{% if regions|length > 0 %}
{% for region in regions %} {% endfor %}
{% endif %} {% if locations|length > 0 %}
{% for location in locations %}
{% if location.locationType %} {{ location.locationType }} {% endif %}

{{ location.name }}

{{ location.fullLocation }}

{% if location.areaHectares %}

Area

{{ location.areaHectares|number_format(0) }} ha

{% endif %}

Projects

{{ location.projects|length }}

{% if location.latitude and location.longitude %}

Coordinates

{{ location.latitude }}, {{ location.longitude }}

{% endif %}
{% endfor %}
{% else %}

No locations yet

Add your conservation sites and protected areas

{% endif %}
{% endblock %}