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

{{ title }}

{{ night_info.description }}

Pollinators
    {% for pollinator in night_info.pollinators %}
  • {{ pollinator }}
  • {% endfor %}
Characteristics
    {% for char in night_info.characteristics %}
  • {{ char }}
  • {% endfor %}
Night Genera
    {% for genus in night_info.common_night_genera %}
  • {{ genus }}
  • {% endfor %}
Collection

{{ orchids.total }} night bloomers

Nocturnal species
{% if orchids.items %}
{% for orchid in orchids.items %}
{% if orchid.google_drive_id %} {{ orchid.display_name }} {% else %} {{ orchid.display_name }} {% endif %} Night
{{ orchid.display_name }}
{% if orchid.scientific_name %}

{{ orchid.scientific_name }}

{% endif %}

Night blooming

{% if orchid.region %}

{{ orchid.region }}

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

{{ orchid.growth_habit }}

{% endif %}
{% endfor %}
{% if orchids.pages > 1 %}
{% endif %} {% else %}
No night-blooming orchids found

We're working to add more nocturnal orchid species to our collection.

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