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

{{ title }}

{{ fragrance_info.description }}

Fragrance Types
    {% for type in fragrance_info.fragrance_types %}
  • {{ type }}
  • {% endfor %}
Peak Times
    {% for time in fragrance_info.peak_times %}
  • {{ time }}
  • {% endfor %}
Fragrant Genera
    {% for genus in fragrance_info.common_fragrant_genera %}
  • {{ genus }}
  • {% endfor %}
Collection

{{ orchids.total }} fragrant orchids

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

{{ orchid.scientific_name }}

{% endif %}

Fragrant flowers

{% if orchid.region %}

{{ orchid.region }}

{% endif %} {% if orchid.bloom_time %}

{{ orchid.bloom_time }}

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

We're continuously adding more fragrant orchid species to our collection.

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