{% extends "base.html" %} {% block title %}{{ title }} - Five Cities Orchid Society{% endblock %} {% block content %}

{{ title }}

{{ country_info.description }}

Climate

{{ country_info.climate }}

Regions
    {% for region in country_info.regions %}
  • {{ region }}
  • {% endfor %}
Endemic Genera
    {% for genus in country_info.common_genera %}
  • {{ genus }}
  • {% endfor %}
Collection

{{ orchids.total }} orchids from Madagascar

Island endemics
{% if orchids.items %}
{% for orchid in orchids.items %}
{% if orchid.google_drive_id %} {{ orchid.display_name }} {% else %} {{ orchid.display_name }} {% endif %} Madagascar
{{ orchid.display_name }}
{% if orchid.scientific_name %}

{{ orchid.scientific_name }}

{% endif %} {% if orchid.region %}

{{ orchid.region }}

{% endif %}

Island Endemic

{% endfor %}
{% if orchids.pages > 1 %}
{% endif %} {% else %}
No Madagascar orchids found

We're working to add more endemic orchids from this remarkable island.

View All Orchids
{% endif %}
{% endblock %}