{% 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 %}
Common Genera
    {% for genus in country_info.common_genera %}
  • {{ genus }}
  • {% endfor %}
Collection

{{ orchids.total }} orchids from Thailand

{% if orchids.items %}
{% for orchid in orchids.items %}
{% if orchid.google_drive_id %} {{ orchid.display_name }} {% else %} {{ orchid.display_name }} {% endif %} Thailand
{{ orchid.display_name }}
{% if orchid.scientific_name %}

{{ orchid.scientific_name }}

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

{{ orchid.region }}

{% endif %} {% if orchid.growth_habit %}

{{ orchid.growth_habit }}

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

We're continuously adding more orchids from Thailand to our collection.

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