{% extends "base.html" %} {% set title = "My Orchid Collection" %} {% block head %} {% endblock %} {% block content %}

My Orchid Collection

Manage the orchids shown in your weather comparison widget

{% if collections %}

Your Collection ({{ collections|length }} orchids)

{% for collection in collections %}
{% if collection.orchid.image_url %} {{ collection.collection_name }} {% else %}
🌺
{% endif %}
{{ collection.collection_name }}
{{ collection.orchid.scientific_name }} {% if collection.orchid.climate_preference %}
{{ collection.orchid.climate_preference|title }} Climate {% if collection.orchid.region %} 📍 {{ collection.orchid.region }} {% endif %}
{% endif %} {% if collection.notes %}
Notes: {{ collection.notes }}
{% endif %}
{% if collection.is_primary %} Primary
{% endif %} {% if collection.show_in_widget %} In Widget
{% endif %} Priority: {{ collection.widget_priority }}
{% endfor %} {% else %}
No Orchids in Collection

Add orchids to your collection to see personalized weather comparisons in the widget.

{% endif %}
Add to Collection
Widget Preview
Add orchids to see widget preview
{% endblock %}